diff --git a/Dockerfile b/Dockerfile index efddb61..0bf95b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,11 @@ FROM node:18-bullseye WORKDIR /workspace COPY audon-fe/ /workspace/ +COPY .git /workspace/.git -RUN npm install && npm run build && npm run hash +RUN npm install && \ + npm run build && \ + npm run hash FROM golang:1.19-bullseye