Added gitea releases.
All checks were successful
/ docker_build (push) Successful in 2m50s
/ deploy_helm (push) Successful in 36s

This commit is contained in:
2025-07-08 16:37:28 +02:00
parent b77a2e6bf9
commit bcac73a9db
15 changed files with 86 additions and 393 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:lts-alpine3.14 as builder
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install
COPY . /app
RUN yarn build
CMD ["yarn", "start", "-p", "80"]