Skip to content

Commit

Permalink
feat: create Dockerfile (#30)
Browse files Browse the repository at this point in the history
Co-authored-by: n30w <hello@neoalabastro.com>
  • Loading branch information
reesedychiao and n30w committed Mar 18, 2024
1 parent 8b01567 commit c457617
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
9 changes: 9 additions & 0 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM node:latest

WORKDIR /app
COPY package*.json ./
RUN corepack enable
RUN yarn
COPY . .
EXPOSE 3000
CMD yarn dev

0 comments on commit c457617

Please sign in to comment.