All checks were successful
Deploy application / deploy (push) Successful in 28s
- Replaced pnpm to npm in docker container because of a bug infestation - Remove only allow pnpm - Added missing envs to docker compose
8 lines
189 B
Docker
8 lines
189 B
Docker
FROM node:22-slim
|
|
LABEL authors="Martin Berg Alstad"
|
|
|
|
COPY . .
|
|
|
|
RUN --mount=type=cache,id=npm,target=/store npm install --omit=dev --frozen-lockfile
|
|
|
|
ENTRYPOINT ["npm", "run", "start-prod"] |