Martin Berg Alstad 066331cca8
All checks were successful
Deploy application / deploy (push) Successful in 28s
🔪🐛 Fix corepack bug, removed unused envs, npm in docker
- Replaced pnpm to npm in docker container because of a bug infestation
- Remove only allow pnpm
- Added missing envs to docker compose
2025-02-05 20:27:08 +01:00

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"]