diff --git a/Dockerfile b/Dockerfile index b79a7ef..e2ec6c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app COPY web . RUN apk update && apk upgrade && \ apk add --no-cache bash git openssh -RUN ssh-keyscan github.com >> /etc/ssh/known_hosts +RUN mkdir ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts RUN yarn RUN cd frontend && yarn && yarn run build CMD ["yarn", "run", "serve"]