mirror of
https://github.com/midou36o/midou36o.github.io
synced 2024-11-08 17:12:27 +05:30
Midou36O
30e733d375
Some checks are pending
Svelte Website guild. / Building the website (push) Waiting to run
a CI builder for gitea.
19 lines
195 B
Docker
19 lines
195 B
Docker
FROM node:18-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"]
|