init
This commit is contained in:
8
client/Dockerfile.dev
Normal file
8
client/Dockerfile.dev
Normal file
@ -0,0 +1,8 @@
|
||||
FROM node:14-alpine
|
||||
WORKDIR '/app'
|
||||
COPY ./package.json ./
|
||||
COPY ./package-lock.json ./
|
||||
COPY ./.npmrc ./
|
||||
RUN npm i
|
||||
COPY . .
|
||||
CMD ["npm", "run", "start"]
|
Reference in New Issue
Block a user