Skip to content

Commit

Permalink
force npm install in Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuelef committed Dec 21, 2024
1 parent 59367f3 commit 7a9570b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:23-alpine AS website
ENV VITE_HOST=""
WORKDIR /build
COPY website .
RUN npm install && npm run build
RUN npm install --force && npm run build
RUN ls -la /build/dist

FROM golang:1.23.4-alpine AS builder
Expand Down

0 comments on commit 7a9570b

Please sign in to comment.