From e7c6a3614e8255d2eb2b9b84c197a8051316a060 Mon Sep 17 00:00:00 2001 From: Alex Luker Date: Tue, 15 Oct 2024 12:10:04 +0100 Subject: [PATCH] and g it and ssh to try and fix build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"]