1
0
mirror of synced 2025-12-30 12:02:01 -05:00
Files
docs/Dockerfile
Kevin Heis c640f6da16 Update Dockerfile so it builds and runs (#17469)
* Update Dockerfile so it at least builds

* And get it running again!

* Update Dockerfile

* Create build-docker-image.yml

* Update build-docker-image.yml

* Update Dockerfile

* Update Dockerfile

* Delete build-docker-image.yml
2021-02-01 22:25:49 +00:00

79 lines
2.4 KiB
Docker

# This Dockerfile can be used for docker-based deployments to platforms
# like Now or Moda, but it is currently _not_ used by our Heroku deployments
# It uses three multi-stage builds: `installation`, `bundles`, and the main build.
# --------------------------------------------------------------------------------
# INSTALLATION IMAGE
# A temporary image that installs production-only dependencies
FROM node:14-alpine as installation
RUN apk add --no-cache python make g++
ENV NODE_ENV production
WORKDIR /usr/src/docs
COPY package*.json ./
# Install the project's dependencies
RUN npm ci --production
# --------------------------------------------------------------------------------
# BUNDLE IMAGE
# A temporary image that installs dependencies and builds the production-ready front-end bundles.
FROM node:14-alpine as bundles
RUN apk add --no-cache python make g++
ENV NODE_ENV production
WORKDIR /usr/src/docs
# Install the files used to create the bundles
COPY package*.json ./
COPY javascripts ./javascripts
COPY stylesheets ./stylesheets
COPY lib ./lib
COPY webpack.config.js ./webpack.config.js
# Install the project's dependencies and build the bundles
RUN npm ci --production
RUN npm run build
# --------------------------------------------------------------------------------
# MAIN IMAGE
FROM node:14-alpine
# Let's make our home
WORKDIR /usr/src/docs
# Ensure our node user owns the directory we're using
RUN chown node:node /usr/src/docs -R
# This should be our normal running user
USER node
# Copy our dependencies
COPY --chown=node:node --from=installation /usr/src/docs/node_modules /usr/src/docs/node_modules
# Copy our front-end code
COPY --chown=node:node --from=bundles /usr/src/docs/dist /usr/src/docs/dist
# We should always be running in production mode
ENV NODE_ENV production
# Use Lunr instead of Algolia
ENV USE_LUNR true
# Copy only what's needed to run the server
COPY --chown=node:node assets ./assets
COPY --chown=node:node content ./content
COPY --chown=node:node data ./data
COPY --chown=node:node includes ./includes
COPY --chown=node:node layouts ./layouts
COPY --chown=node:node lib ./lib
COPY --chown=node:node middleware ./middleware
COPY --chown=node:node translations ./translations
COPY --chown=node:node server.js ./server.js
COPY --chown=node:node package*.json ./
COPY --chown=node:node feature-flags.json ./
EXPOSE 80
EXPOSE 443
EXPOSE 4000
CMD ["node", "server.js"]