Skip to content

Commit

Permalink
feat: add docker file
Browse files Browse the repository at this point in the history
  • Loading branch information
nhamngo29 committed Nov 26, 2024
1 parent 3459a9e commit 14aeea4
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:18-alpine

EXPOSE 3000

WORKDIR /react-vite-app

COPY package.json .

RUN yarn install

COPY . .

CMD [ "yarn","build"]

0 comments on commit 14aeea4

Please sign in to comment.