1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00
Files
peeringdb-peeringdb/Dockerfile
Matt Griswold 04a6d8f071 operations changes (#1508)
* remove listening env vars from docker file
* allow env override of STATIC and MEDIA root
* add uwsgi file to tester target
* add output_dir to kmz gen, kmz-gen-only
2024-01-16 14:37:44 -06:00

133 lines
2.6 KiB
Docker

# RUN true is used here to separate problematic COPY statements,
# per this issue: https://github.com/moby/moby/issues/37965
# rust and cargo for cryptography package
ARG build_deps=" \
g++ \
freetype-dev \
libjpeg-turbo-dev \
linux-headers \
make \
mariadb-dev \
libffi-dev \
curl \
rust \
cargo \
"
ARG run_deps=" \
freetype \
ttf-freefont \
gettext \
libjpeg-turbo \
graphviz \
mariadb-connector-c \
libgcc \
"
FROM python:3.11-alpine as base
ARG virtual_env=/srv/www.peeringdb.com/venv
ENV VIRTUAL_ENV="$virtual_env"
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
# build container
FROM base as builder
ARG build_deps
RUN apk --update --no-cache add $build_deps
RUN pip install -U pip poetry
# create venv and update venv pip
RUN python3 -m venv "$VIRTUAL_ENV" && pip install -U pip
WORKDIR /srv/www.peeringdb.com
COPY poetry.lock pyproject.toml ./
# install dev now so we don't need a build env for testing (adds 8M)
RUN poetry install --no-root
# inetd
RUN apk add busybox-extras
#### final image here
FROM base as final
ARG run_deps
ARG uid=996
# extra settings file if needed
ARG ADD_SETTINGS_FILE=mainsite/settings/dev.py
# add dependencies
RUN apk add --no-cache $run_deps
RUN adduser -Du $uid pdb
WORKDIR /srv/www.peeringdb.com
COPY --from=builder "$VIRTUAL_ENV" "$VIRTUAL_ENV"
RUN mkdir -p api-cache etc locale media static var/log
COPY manage.py .
# container exec whois
COPY in.whoisd .
COPY Ctl/VERSION etc
COPY docs/ docs
COPY mainsite/ mainsite
RUN true
COPY $ADD_SETTINGS_FILE mainsite/settings/
RUN true
COPY peeringdb_server/ peeringdb_server
COPY fixtures/ fixtures
COPY .coveragerc .coveragerc
RUN mkdir coverage
COPY scripts/manage /usr/bin/
COPY Ctl/docker/entrypoint.sh /
# inetd for whois
COPY --from=builder /usr/sbin/inetd /usr/sbin/
RUN true
COPY Ctl/docker/inetd.conf /etc/
RUN chown -R pdb:pdb api-cache locale media var/log coverage
#### test image here
FROM final as tester
ARG build_deps
WORKDIR /srv/www.peeringdb.com
COPY poetry.lock pyproject.toml ./
RUN true
COPY tests/ tests
RUN chown -R pdb:pdb tests/
# install dev deps
RUN apk --update --no-cache add $build_deps
RUN pip install -U poetry
RUN poetry install --no-root
# Same as final entrypoint for running in dev mode
COPY Ctl/docker/entrypoint.sh .
RUN true
COPY Ctl/docker/django-uwsgi.ini etc/
USER pdb
ENTRYPOINT ["./entrypoint.sh"]
CMD ["runserver"]
#### entry point from final image, not tester
FROM final
COPY Ctl/docker/entrypoint.sh .
RUN true
COPY Ctl/docker/django-uwsgi.ini etc/
USER pdb
ENTRYPOINT ["./entrypoint.sh"]
CMD ["runserver"]