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

Commit

Permalink
feat: docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed Jun 30, 2024
1 parent 19c84c0 commit 9ce9e3b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
ARG NODE_VERSION=20

FROM node:${NODE_VERSION}
LABEL org.opencontainers.image.source https://github.com/eddiehubcommunity/biodrop

WORKDIR /usr/src/app

COPY . .

RUN npm ci

EXPOSE 3000

CMD npm run build && npm run start

0 comments on commit 9ce9e3b

Please sign in to comment.