Initial Commit
This commit is contained in:
11
Dockerfile
Normal file
11
Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM node:16-alpine
|
||||
|
||||
WORKDIR /app
|
||||
ENV NODE_ENV=production
|
||||
|
||||
COPY . /app
|
||||
|
||||
RUN npm install --only=production
|
||||
|
||||
ENTRYPOINT npm start
|
||||
EXPOSE 3000
|
||||
Reference in New Issue
Block a user