network-resurrector-frontend/dockerfile

35 lines
658 B
Plaintext

# build environment
FROM node:12-slim as builder
WORKDIR /app
COPY .npmrc .npmrc
COPY package*.json ./
RUN npm install
RUN rm -f .npmrc
COPY . ./
RUN npm run build
# production environment
FROM node:12-slim
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
# environment variables
ENV AUTHOR="Tudor Stanciu"
ARG APP_VERSION=0.0.0
ENV APP_VERSION=${APP_VERSION}
#set workdir to root
WORKDIR /
EXPOSE 80
CMD ["sh", "-c", "serve -s application -p 80"]