Compare commits

...

2 commits

Author SHA1 Message Date
Mrrp
5a7258e0e2 Merge pull request '.' (#7) from main into gold
Some checks failed
Publish to OCI Registry / publish (push) Failing after 5m7s
Testing / test (push) Has been cancelled
Reviewed-on: #7
2025-03-06 06:57:21 +00:00
e59af9afe9 .
Some checks failed
Testing / test (push) Waiting to run
Testing / test (pull_request) Has been cancelled
2025-03-05 22:56:55 -08:00

View file

@ -1,13 +1,13 @@
# build stage
FROM node:lts-alpine as build-stage
FROM node:lts-alpine AS build-stage
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci --omit=dev
RUN npm i
COPY . .
RUN npm run build
# production stage
FROM nginx:stable-alpine as production-stage
FROM nginx:stable-alpine AS production-stage
# Remove default Nginx index page
RUN rm -rf /usr/share/nginx/html/*