Implemented forgejo ci

This commit is contained in:
Firq 2023-12-21 00:16:39 +01:00
parent 73d0debc1e
commit 83661b9d38
Signed by: Firq
GPG key ID: 4DE1059A4666E89F
6 changed files with 154 additions and 3 deletions

17
Dockerfile Normal file
View file

@ -0,0 +1,17 @@
FROM node:lts AS build
WORKDIR /app
COPY . .
RUN npm i
RUN npm run build
FROM node:lts AS runtime
RUN npm install --global "@warren-bank/serve"
COPY --from=build /app/dist /public
COPY --from=build /app/serve.json /public/serve.json
RUN rm -r /public/assets/data/
ENV PORT 8081
EXPOSE 8081
CMD [ "serve", "public/", "-p", "8081" ]