You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
600 B
17 lines
600 B
FROM node:18.18-bullseye as builder
|
|
ARG BUILDDATE
|
|
ENV BUILDDATE $BUILDDATE
|
|
|
|
RUN git clone https://git.pblr-nyk.pro/gsd/Facti13.Frontend.VueMaterial && \
|
|
mv Facti13.Frontend.VueMaterial /app && chown node:node -R /app && chmod 770 -R /app && \
|
|
echo "export const VERSION = $(date +%s);" > /app/src/api/version.js
|
|
|
|
USER node
|
|
WORKDIR /app
|
|
RUN npm install --reg https://nexus.pblr-nyk.pro/repository/npm/ && npm run build
|
|
|
|
FROM nginx:stable-alpine
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
RUN rm /etc/nginx/conf.d/default.conf
|
|
COPY srv.conf /etc/nginx/conf.d
|
|
CMD ["nginx", "-g", "daemon off;"]
|