Skip to content

Commit

Permalink
Merge pull request #5 from kstm-su/feat/setup-docker
Browse files Browse the repository at this point in the history
dockerfileを書いていきます
  • Loading branch information
Cyndaquil1999 authored Jul 7, 2024
2 parents 6a8d08e + 4b9c9fe commit 7b972ee
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions member-portal-frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:20-alpine

WORKDIR /app

COPY ./package*.json ./

RUN npm install

COPY . .

ENTRYPOINT ["npm", "run", "dev"]

0 comments on commit 7b972ee

Please sign in to comment.