midou36o.github.io/Dockerfile
Midou36O 78cbd292b1
Some checks failed
Svelte Website guild. / Building the website (push) Failing after 12m46s
Update node version
2023-12-30 10:53:24 +01:00

19 lines
195 B
Docker

FROM node:21-alpine
WORKDIR /usr/src/app
COPY package.json ./
COPY pnpm-lock.yaml ./
RUN npm install -g pnpm
RUN pnpm i
COPY . .
RUN pnpm build
EXPOSE 3000
CMD ["node", "build/index.js"]