Skip to content

Commit 8572bae

Browse files
authored
Dockerfile
Tested via git - codespace ✅ 0 error ✅
1 parent b0f757b commit 8572bae

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM node:14
2+
3+
WORKDIR /app
4+
5+
COPY package*.json ./
6+
7+
RUN npm install
8+
9+
COPY . .
10+
11+
EXPOSE 80
12+
13+
CMD ["npm", "start"]

0 commit comments

Comments
 (0)