Update 2 files

- /Dockerfile
- /.gitlab-ci.yml
This commit is contained in:
Administrator
2024-08-08 09:34:59 +00:00
parent d8384aa616
commit 45dd9cfdba
2 changed files with 51 additions and 0 deletions

24
Dockerfile Normal file
View File

@@ -0,0 +1,24 @@
FROM node:latest as builder
WORKDIR /usr/src/app
# this will allow us to run vite and other tools directly
ENV PATH /usr/src/node_modules/.bin:$PATH
# inject all environment vars we'll need
ARG VITE_BACKEND_URL
ENV VITE_BACKEND_URL=$VITE_BACKEND_URL
COPY package.json ./
RUN npm install
COPY . ./
RUN npm run build
FROM nginx:latest as prod
COPY --from=builder /usr/src/app/dist /usr/share/nginx/html
CMD ["nginx", "-g", "daemon off;"]