We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d93243 commit ad2f5c8Copy full SHA for ad2f5c8
Dockerfile
@@ -6,6 +6,10 @@ ENV SHOPIFY_API_KEY=$SHOPIFY_API_KEY
6
EXPOSE 8081
7
WORKDIR /app
8
COPY web .
9
+RUN apk update && apk upgrade && \
10
+ apk add --no-cache bash git openssh
11
+RUN mkdir ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts
12
+RUN rm yarn.lock
13
RUN yarn
14
RUN cd frontend && yarn && yarn run build
15
CMD ["yarn", "run", "serve"]
0 commit comments