2023-06-08 20:16:05 +03:00
|
|
|
# (Keep the version in sync with the node install below)
|
|
|
|
FROM node:18-bullseye-slim as frontend
|
|
|
|
|
|
|
|
# Make build & post-install scripts behave as if we were in a CI environment (e.g. for logging verbosity purposes).
|
|
|
|
ARG CI=true
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Install front-end dependencies.
|
|
|
|
# This will create a `node_modules` directory in the current directory.
|
|
|
|
COPY package.json package-lock.json tailwind.config.js esbuild.config.js contribute.json ./
|
|
|
|
COPY ./tailwind-plugins/ ./tailwind-plugins/
|
|
|
|
RUN npm ci --no-optional --no-audit --progress=false
|
|
|
|
|
|
|
|
# Compile static files from static source at ./source to ./network-api/networkapi/frontend
|
|
|
|
# This will create a `network-api/networkapi/frontend` directory.
|
|
|
|
COPY ./source/ ./source/
|
|
|
|
COPY ./network-api/networkapi/ ./network-api/networkapi/
|
|
|
|
RUN npm run build
|
|
|
|
|
|
|
|
|
|
|
|
# We use Debian images because they are considered more stable than the alpine
|
2023-06-19 15:18:29 +03:00
|
|
|
# ones because they use a different C compiler. Debian images also come with
|
2023-06-08 20:16:05 +03:00
|
|
|
# all useful packages required for image manipulation out of the box. They
|
|
|
|
# however weight a lot, approx. up to 1.5GiB per built image.
|
|
|
|
#
|
2023-06-12 16:50:26 +03:00
|
|
|
# Note: This stage builds the base image for production. Presently we are not
|
|
|
|
# using this on the production site, but only use it as base for the dev build.
|
|
|
|
FROM python:3.9.9-slim as base
|
2023-06-08 20:16:05 +03:00
|
|
|
|
|
|
|
# Install dependencies in a virtualenv
|
|
|
|
ENV VIRTUAL_ENV=/app/dockerpythonvenv
|
|
|
|
|
|
|
|
RUN useradd mozilla --create-home && mkdir /app $VIRTUAL_ENV && chown -R mozilla /app $VIRTUAL_ENV
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
# Set default environment variables. They are used at build time and runtime.
|
2023-06-19 15:18:29 +03:00
|
|
|
# If you specify your own environment variables on Heroku, they will
|
2023-06-08 20:16:05 +03:00
|
|
|
# override the ones set here. The ones below serve as sane defaults only.
|
|
|
|
# * PYTHONUNBUFFERED - This is useful so Python does not hold any messages
|
|
|
|
# from being output.
|
|
|
|
# https://docs.python.org/3.11/using/cmdline.html#envvar-PYTHONUNBUFFERED
|
|
|
|
# https://docs.python.org/3.11/using/cmdline.html#cmdoption-u
|
|
|
|
# * DJANGO_SETTINGS_MODULE - default settings used in the container.
|
2023-06-19 15:18:29 +03:00
|
|
|
# * PORT - default port used.
|
2023-06-08 20:16:05 +03:00
|
|
|
# Heroku will ignore EXPOSE and only set PORT variable. PORT variable is
|
|
|
|
# read/used by Gunicorn.
|
|
|
|
# * WEB_CONCURRENCY - number of workers used by Gunicorn. The variable is
|
|
|
|
# read by Gunicorn.
|
|
|
|
# * GUNICORN_CMD_ARGS - additional arguments to be passed to Gunicorn. This
|
|
|
|
# variable is read by Gunicorn
|
|
|
|
ENV PATH=$VIRTUAL_ENV/bin:$PATH \
|
|
|
|
PYTHONUNBUFFERED=1 \
|
|
|
|
PYTHONDONTWRITEBYTECODE=1 \
|
|
|
|
DJANGO_SETTINGS_MODULE=networkapi.settings \
|
|
|
|
PORT=8000 \
|
|
|
|
WEB_CONCURRENCY=3 \
|
|
|
|
GUNICORN_CMD_ARGS="-c gunicorn-conf.py --max-requests 1200 --max-requests-jitter 50 --access-logfile - --timeout 25"
|
|
|
|
|
|
|
|
# Make $BUILD_ENV available at runtime
|
|
|
|
ARG BUILD_ENV
|
|
|
|
ENV BUILD_ENV=${BUILD_ENV}
|
|
|
|
|
|
|
|
# Port exposed by this container. Should default to the port used by your WSGI
|
2023-06-19 15:18:29 +03:00
|
|
|
# server (Gunicorn). Heroku will ignore this.
|
2023-06-08 20:16:05 +03:00
|
|
|
EXPOSE 8000
|
|
|
|
|
|
|
|
# Install operating system dependencies.
|
|
|
|
RUN apt-get update --yes --quiet && apt-get install --yes --quiet --no-install-recommends \
|
|
|
|
build-essential \
|
|
|
|
libpq-dev \
|
|
|
|
curl \
|
|
|
|
git \
|
2023-07-17 20:32:24 +03:00
|
|
|
gettext \
|
2023-06-08 20:16:05 +03:00
|
|
|
&& apt-get autoremove && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
# Don't use the root user as it's an anti-pattern and Heroku does not run
|
|
|
|
# containers as root either.
|
|
|
|
# https://devcenter.heroku.com/articles/container-registry-and-runtime#dockerfile-commands-and-runtime
|
|
|
|
USER mozilla
|
|
|
|
|
|
|
|
# Install your app's Python requirements.
|
|
|
|
RUN python -m venv $VIRTUAL_ENV
|
|
|
|
RUN pip install -U pip==20.0.2 && pip install pip-tools
|
2023-06-14 16:47:00 +03:00
|
|
|
# Normally we won't install dev dependencies in production, but we do it here to optimise
|
|
|
|
# docker build cache for local build
|
2023-06-14 21:20:51 +03:00
|
|
|
COPY --chown=mozilla ./requirements.txt ./dev-requirements.txt ./
|
2023-06-23 13:35:31 +03:00
|
|
|
# We use pip-tools instead of pip install. This will installing, upgrading, or uninstalling
|
|
|
|
# all dependencies necessary to match the contents of the requirements files.
|
|
|
|
RUN pip-sync requirements.txt dev-requirements.txt
|
2023-06-08 20:16:05 +03:00
|
|
|
|
|
|
|
# Copy application code.
|
2023-06-14 21:20:51 +03:00
|
|
|
# Any change in this directory is likely to invalidate build cache for all lines below.
|
2023-06-14 16:59:44 +03:00
|
|
|
# Utilise .dockerignore to minimise cache invalidation.
|
2023-06-08 20:16:05 +03:00
|
|
|
COPY --chown=mozilla . .
|
|
|
|
|
|
|
|
# Copy compiled assets from the frontend build stage for collectstatic to work.
|
2023-06-14 21:20:51 +03:00
|
|
|
# This will later be obscured by the `network-api` bind mount in docker-compose.yml, and
|
|
|
|
# will need to be recreated by `npm run build`.
|
2023-06-08 20:16:05 +03:00
|
|
|
COPY --chown=mozilla --from=frontend /app/network-api/networkapi/frontend ./network-api/networkapi/frontend
|
|
|
|
|
2023-06-23 13:35:31 +03:00
|
|
|
# Run collectstatic to move static files from application directories and
|
|
|
|
# compiled static directory (network-api/networkapi/frontend) to the site's static
|
|
|
|
# directory in /app/network-api/staticfiles that will be served by the WSGI server.
|
|
|
|
#
|
|
|
|
# Note: this is only used where DEBUG=False, and so is not needed on dev builds.
|
|
|
|
# The network-api/staticfiles will not be visible after mounting the
|
|
|
|
# network-api directory.
|
2023-06-08 20:16:05 +03:00
|
|
|
RUN SECRET_KEY=none python ./network-api/manage.py collectstatic --noinput --clear
|
|
|
|
|
|
|
|
# Run the WSGI server. It reads GUNICORN_CMD_ARGS, PORT and WEB_CONCURRENCY
|
|
|
|
# environment variable hence we don't specify a lot options below.
|
2023-06-23 13:35:31 +03:00
|
|
|
# Note: this will be overridden by other commands below for dev builds.
|
2023-06-08 20:16:05 +03:00
|
|
|
CMD gunicorn networkapi.wsgi:application
|
|
|
|
|
|
|
|
# Below is used for local dev builds only
|
2023-06-12 16:50:26 +03:00
|
|
|
FROM base as dev
|
2023-06-08 20:16:05 +03:00
|
|
|
|
|
|
|
# Swap user, so the following tasks can be run as root
|
|
|
|
USER root
|
|
|
|
|
|
|
|
# Install `psql`, useful for `manage.py dbshell`
|
2023-10-06 18:50:54 +03:00
|
|
|
RUN apt-get update --yes --quiet && apt-get install --yes --quiet --no-install-recommends \
|
|
|
|
postgresql-client \
|
|
|
|
&& apt-get autoremove && rm -rf /var/lib/apt/lists/*
|
2023-06-08 20:16:05 +03:00
|
|
|
|
|
|
|
# Restore user
|
|
|
|
USER mozilla
|
|
|
|
|
2023-10-06 18:50:54 +03:00
|
|
|
# Install nvm and node/npm (will install node version defined in .nvmrc)
|
|
|
|
# (Keep the version in sync with the node install above)
|
|
|
|
COPY --chown=mozilla .nvmrc ./
|
|
|
|
RUN curl https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash && \
|
|
|
|
bash --login -c "nvm install --no-progress && nvm alias default $(nvm run --silent --version)"
|
|
|
|
|
2023-06-14 16:47:00 +03:00
|
|
|
# Pull in the node modules from the frontend build stage so we don't have to run npm ci again.
|
2023-06-08 20:16:05 +03:00
|
|
|
# This is just a copy in the container, and is not visible to the host machine.
|
2023-06-23 13:35:31 +03:00
|
|
|
# We can't mount this as the empty directory in the host will obscure our the installed content.
|
|
|
|
# See https://docs.docker.com/storage/bind-mounts/#mount-into-a-non-empty-directory-on-the-container
|
2023-06-08 20:16:05 +03:00
|
|
|
COPY --chown=mozilla --from=frontend /app/node_modules ./node_modules
|
|
|
|
|
2023-06-14 21:20:51 +03:00
|
|
|
# To avoid isort `fatal: detected dubious ownership in repository at '/app'` error
|
|
|
|
RUN git config --global --add safe.directory /app
|
|
|
|
|
2023-06-08 20:16:05 +03:00
|
|
|
# do nothing forever - exec commands elsewhere
|
2023-06-13 16:27:18 +03:00
|
|
|
CMD tail -f /dev/null
|