Skip to content

Instantly share code, notes, and snippets.

@flaviouk
Created October 8, 2020 16:10
Show Gist options
  • Save flaviouk/b7bfecff6c351e1bf0a9f334ea91374a to your computer and use it in GitHub Desktop.
Save flaviouk/b7bfecff6c351e1bf0a9f334ea91374a to your computer and use it in GitHub Desktop.
# This gets our prod dependencies installed and out of the way
FROM node:12-alpine as base
ENV PORT=3000
EXPOSE $PORT
ENV NODE_ENV=production
WORKDIR /app
RUN apk update && apk add --no-cache tini
# Allows us to stop the server with Ctrl + C
ENTRYPOINT ["/sbin/tini", "--"]
COPY package*.json ./
COPY .npmrc ./
RUN npm config list \
&& npm install --only=production --no-optional \
&& npm cache clean --force
COPY ./public ./public
COPY ./tsconfig.json ./
COPY ./next.config.js ./
COPY ./next-env.d.ts ./
FROM base as dev
WORKDIR /app
ENV NODE_ENV=development
RUN npm config list \
&& npm install --only=development --no-optional \
&& npm cache clean --force
COPY ./src ./src
CMD yarn dev -p $PORT
FROM dev as builder
RUN npx next telemetry disable
RUN yarn build
FROM base as prod
COPY --from=builder /app/.next/ ./.next/
COPY --from=builder /app/public/ ./public/
RUN addgroup -g 1001 -S nodejs
RUN adduser -S nextjs -u 1001
USER nextjs
CMD yarn start -p $PORT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment