Skip to content

Commit dfba063

Browse files
committed
Added first dockerfile, it must be tested
1 parent 69ba8ff commit dfba063

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.dockerignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
.git
3+
.gitignore
4+
README.md
5+
LICENSE.md

Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM node:lts
2+
WORKDIR /app
3+
COPY package*.json ./
4+
RUN npm ci --silent
5+
COPY . ./
6+
EXPOSE 4999
7+
CMD ["node", "index.js"]

0 commit comments

Comments
 (0)