nile/Dockerfile

22 lines
574 B
Docker

FROM nginx:alpine
# Install Node
RUN apk add --update npm
WORKDIR /build
# Dependencies
COPY package.json package.json
COPY package-lock.json package-lock.json
RUN npm i
# Copy react build assets
COPY public public
COPY src src
COPY index.html .
COPY vite.config.js .
# Build static web files
RUN npm run build:react
# Set working directory to nginx asset directory
# Remove default nginx static assets
WORKDIR /usr/share/nginx/html
RUN rm -rf ./*
RUN mv /build/dist/* .
# Containers run nginx with global directives and daemon off
ENTRYPOINT ["nginx", "-g", "daemon off;"]