Skip to content
Snippets Groups Projects
Select Git revision
  • 0259384222110b17e7c9fefa2587936d0156fe0b
  • main default
  • browserslist-update
  • dependabot/github_actions/bbeesley/gha-auto-dependabot-rebase-1.5.161
  • v0.1.17
  • v0.1.16
  • v0.1.15
  • v0.1.14
  • v0.1.13
  • v0.1.12
  • v0.1.11
  • v0.1.10
  • v0.1.9
  • v0.1.8
  • v0.1.7
  • v0.1.6
  • v0.1.5
  • v0.1.4
  • v0.1.3
  • v0.1.2
  • v0.1.1
  • v0.1.0
  • v0.0.59
  • v0.0.58
24 results

Dockerfile

Blame
  • Dockerfile 349 B
    # The builder image
    FROM node:23.6.0 AS builder
    ENV NODE_ENV=production
    WORKDIR /app
    COPY package*.json ./
    RUN --mount=type=secret,id=npmrc,target=/home/node/.npmrc \
        npm ci --omit=dev
    COPY . .
    RUN npm run build
    
    # The production image
    FROM nginxinc/nginx-unprivileged:1.27.3 AS production
    COPY --from=builder /app/build/ /usr/share/nginx/html/