network-resurrector-frontend/dockerfile

38 lines
701 B
Plaintext
Raw Normal View History

2020-12-26 02:27:53 +02:00
# build environment
FROM node:14-slim as builder
2020-12-26 02:27:53 +02:00
WORKDIR /app
2022-05-09 03:03:00 +03:00
COPY .npmrc .npmrc
2020-12-26 02:27:53 +02:00
COPY package*.json ./
RUN npm install
2022-05-09 03:03:00 +03:00
RUN rm -f .npmrc
2020-12-26 02:27:53 +02:00
COPY . ./
RUN npm run build
# production environment
FROM node:14-slim
2020-12-26 02:27:53 +02:00
RUN printf '\n\n- Copy application files\n'
ARG APP_SUBFOLDER=network-resurrector
COPY --from=builder /app/build ./application/${APP_SUBFOLDER}
COPY --from=builder /app/build/index.html ./application/
#install static server
RUN npm install -g serve
2022-12-29 22:47:15 +02:00
# environment variables
ENV AUTHOR="Tudor Stanciu"
ARG APP_VERSION=0.0.0
ENV APP_VERSION=${APP_VERSION}
2023-03-27 02:15:22 +03:00
ARG APP_DATE="-"
ENV APP_DATE=${APP_DATE}
2020-12-26 02:27:53 +02:00
#set workdir to root
WORKDIR /
EXPOSE 80
CMD ["sh", "-c", "serve -s application -p 80"]