🔥 Remove old frontend (#649)

This commit is contained in:
Sebastián Ramírez
2024-03-08 15:44:04 +01:00
committed by GitHub
parent 55c19b3196
commit 458d712d44
76 changed files with 7 additions and 2448 deletions

View File

@@ -1,30 +0,0 @@
# Stage 0, "build-stage", based on Node.js, to build and compile the frontend
FROM node:18.12.1 as build-stage
WORKDIR /app
COPY package*.json /app/
RUN npm install
COPY ./ /app/
ARG FRONTEND_ENV=production
ENV VUE_APP_ENV=${FRONTEND_ENV}
ENV NODE_OPTIONS="--openssl-legacy-provider"
# Comment out the next line to disable tests
RUN npm run test:unit
RUN npm run build
# Stage 1, based on Nginx, to have only the compiled app, ready for production with Nginx
FROM nginx:1.15
COPY --from=build-stage /app/dist/ /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
COPY ./nginx-backend-not-found.conf /etc/nginx/extra-conf.d/backend-not-found.conf