Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit 9ce9e3b

Browse files
committed
feat: docker file
1 parent 19c84c0 commit 9ce9e3b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Dockerfile

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
ARG NODE_VERSION=20
2+
3+
FROM node:${NODE_VERSION}
4+
LABEL org.opencontainers.image.source https://github.com/eddiehubcommunity/biodrop
5+
6+
WORKDIR /usr/src/app
7+
8+
COPY . .
9+
10+
RUN npm ci
11+
12+
EXPOSE 3000
13+
14+
CMD npm run build && npm run start

0 commit comments

Comments
 (0)