Skip to content

Commit 13c9c80

Browse files
authored
Merge pull request #9 from firstmatecloud/ticket-xxx-docker-update
dockerize application
2 parents 10d688a + 0e60f78 commit 13c9c80

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM node:19-alpine
2+
ENV PORT 8080
3+
4+
WORKDIR /usr/src/app
5+
6+
RUN apk add --no-cache git
7+
COPY . .
8+
EXPOSE 8080
9+
CMD ["npm", "start", "--no-update-notifier"]

0 commit comments

Comments
 (0)