Skip to content

Commit

Permalink
Fix legacy syntax in frontend dockerfile (#834)
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount authored Jan 23, 2025
1 parent da2e240 commit d8d611e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ FROM node:lts-alpine

WORKDIR /app

ENV PATH /app/node_modules/.bin:$PATH
ENV PATH="/app/node_modules/.bin:${PATH}"

# Get git
RUN apk add --no-cache git

COPY . .
RUN npm install

CMD vite dev --port 8080
CMD ["vite", "dev", "--port", "8080"]

0 comments on commit d8d611e

Please sign in to comment.