Merge branch 'master' of gitea.release11.com:R11/release11-tools into release

This commit is contained in:
2023-12-29 12:44:49 +01:00
87 changed files with 2340 additions and 268 deletions

View File

@@ -1,4 +1,8 @@
<<<<<<< HEAD
FROM node:latest as build-stage
=======
FROM node:20.9.0-bullseye-slim as build-stage
>>>>>>> 307e732608fca31b60027b417412691ff0e1c2f0
WORKDIR /app
COPY package*.json ./
RUN npm install
@@ -7,7 +11,7 @@ RUN npm run build
FROM nginx:stable-alpine as production-stage
FROM nginx:stable-alpine3.17-slim as production-stage
RUN mkdir /app
RUN apk add --no-cache tzdata
@@ -20,7 +24,7 @@ EXPOSE 80
EXPOSE 443
FROM node:latest as dev
FROM node:20.9.0-bullseye-slim as dev
WORKDIR /app
COPY package*.json ./
RUN npm install