Skip to content

Commit

Permalink
Merge pull request #3 from MinaFoundation/feature/dockerfile
Browse files Browse the repository at this point in the history
feat: add Dockerfile
  • Loading branch information
iluxonchik authored Aug 28, 2024
2 parents 01afaec + 77dc800 commit 83fe679
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 @@
FROM node:22

WORKDIR /app

COPY package.json package-lock.json database.sqlite ./

RUN npm ci

COPY . .

EXPOSE 4321

# TODO: in the future, build and then run. For now, expose the dev server
CMD ["npm", "run", "dev"]

0 comments on commit 83fe679

Please sign in to comment.