mirror of
https://github.com/midou36o/midou36o.github.io
synced 2024-11-09 22:02:02 +05:30
Midou36O
beb748fbe4
Some checks failed
Svelte Website guild. / Building the website (push) Failing after 13m14s
19 lines
196 B
Docker
19 lines
196 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"]
|