diff --git a/Dockerfile b/Dockerfile index 6efc4f4..cd1e00e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM node:15.11.0-alpine3.13 +RUN apk add git -f WORKDIR /app COPY . . RUN yarn && cd app && yarn && cd ..