Skip to content

Commit

Permalink
feat(container): add dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
hqdNotional committed Sep 6, 2024
1 parent 35e4122 commit f1dc13f
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:20-alpine

WORKDIR /usr/src/app

ENV SKIP_YARN_COREPACK_CHECK 1

COPY . .

RUN yarn install --frozen-lockfile

EXPOSE 3000

CMD [ "yarn", "dev" ]

0 comments on commit f1dc13f

Please sign in to comment.