Move to node, update all dependencies, fix unocss, add a dockerfile and
Svelte Website guild. / Building the website (push) Waiting to run

a CI builder for gitea.
This commit is contained in:
2023-12-29 20:13:37 +01:00
parent ad7efaa286
commit 30e733d375
9 changed files with 108 additions and 44 deletions
+18
View File
@@ -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"]