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.
19 lines
584 B
19 lines
584 B
FROM node:18.18-bullseye as builder
|
|
|
|
ARG BUILDDATE
|
|
ENV BUILDDATE $BUILDDATE
|
|
RUN echo "Build Date: $BUILDATE"
|
|
|
|
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 = $BUILDATE;" >> /app/src/api/version.js
|
|
|
|
USER node
|
|
WORKDIR /app
|
|
RUN npm install && 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;"]
|