Fixxed dockerfile

This commit is contained in:
2020-12-03 18:48:24 +01:00
parent 684e7c4ddb
commit ee35da7342
2 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
FROM node:alpine
WORKDIR /app
COPY ./package.json ./
RUN npm i
RUN yarn
COPY ./ ./
ENTRYPOINT [ "yarn","dev" ]