Add Dockerfile
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
FROM node:16-alpine
|
||||
WORKDIR /app
|
||||
COPY package*.json .
|
||||
RUN npm install
|
||||
COPY . .
|
||||
EXPOSE 3000
|
||||
CMD ["npm", "run", "start"]
|
||||
Reference in New Issue
Block a user