mirror of
https://github.com/midou36o/midou36o.github.io
synced 2026-05-04 23:31:18 +05:30
Move to node, update all dependencies, fix unocss, add a dockerfile and
Svelte Website guild. / Building the website (push) Waiting to run
Svelte Website guild. / Building the website (push) Waiting to run
a CI builder for gitea.
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
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"]
|
||||
Reference in New Issue
Block a user