38 lines
998 B
Docker
38 lines
998 B
Docker
# Install dependencies only when needed
|
|
FROM node:16-alpine AS deps
|
|
# Check https://github.com/nodejs/docker-node/tree/b4117f9333da4138b03a546ec926ef50a31506c3#nodealpine to understand why libc6-compat might be needed.
|
|
RUN apk add --no-cache libc6-compat
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json ./
|
|
RUN npm ci
|
|
|
|
# Rebuild the source code only when needed
|
|
FROM node:16-alpine AS builder
|
|
ENV NODE_ENV production
|
|
WORKDIR /app
|
|
# Copy dependencies from deps stage
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
# Bundle static assets with nginx
|
|
FROM nginx:1.21.6 as production
|
|
# Copy built assets from builder
|
|
COPY --from=builder /app/build /usr/share/nginx/html
|
|
# Add nginx.config
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
# Expose ports
|
|
EXPOSE 80
|
|
|
|
COPY entrypoint.sh .
|
|
COPY .env.production .
|
|
|
|
ENV NODE_ENV production
|
|
|
|
# Execute script
|
|
RUN ["chmod", "+x", "./entrypoint.sh"]
|
|
ENTRYPOINT ["./entrypoint.sh"]
|
|
|
|
# Start serving
|
|
CMD ["nginx", "-g", "daemon off;"] |