Skip to content

Commit

Permalink
update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
luiztauffer committed Oct 4, 2023
1 parent 9415cc9 commit c6f5f2e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ FROM node:19.2-bullseye-slim

WORKDIR /app

COPY package*.json ./
COPY yarn.lock ./
COPY package.json yarn.lock ./
RUN yarn install

COPY . ./

# RUN yarn build

EXPOSE 3000

CMD ["yarn", "start"]
CMD ["yarn", "vite"]

0 comments on commit c6f5f2e

Please sign in to comment.