Skip to content

Commit 07f29b7

Browse files
authored
Update Dockerfile.frontend
1 parent 63ae99a commit 07f29b7

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Dockerfile.frontend

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

0 commit comments

Comments
 (0)