2021-03-09 13:30:30 -06:00
|
|
|
# RUN true is used here to separate problematic COPY statements,
|
|
|
|
# per this issue: https://github.com/moby/moby/issues/37965
|
|
|
|
|
2021-01-13 20:35:07 +00:00
|
|
|
FROM python:3.9-alpine as base
|
2020-04-14 10:45:36 -05:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
RUN apk --update --no-cache add \
|
|
|
|
g++ \
|
|
|
|
libjpeg-turbo-dev \
|
|
|
|
linux-headers \
|
|
|
|
make \
|
2020-11-04 07:39:15 +00:00
|
|
|
mariadb-dev \
|
2021-03-09 13:30:30 -06:00
|
|
|
libffi-dev \
|
|
|
|
curl
|
|
|
|
|
|
|
|
|
|
|
|
# Install Rust to install Poetry
|
|
|
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
|
|
ENV PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
|
2020-04-14 10:45:36 -05:00
|
|
|
|
|
|
|
# create venv
|
|
|
|
RUN pip install -U pip pipenv
|
|
|
|
RUN python3 -m venv "$VIRTUAL_ENV"
|
|
|
|
|
|
|
|
WORKDIR /srv/www.peeringdb.com
|
|
|
|
ADD Pipfile* ./
|
|
|
|
RUN pipenv install --ignore-pipfile
|
|
|
|
|
|
|
|
# inetd
|
|
|
|
RUN apk add busybox-extras
|
|
|
|
|
|
|
|
|
|
|
|
#### final image here
|
|
|
|
|
|
|
|
FROM base as final
|
|
|
|
|
|
|
|
ARG uid=996
|
|
|
|
|
|
|
|
# extra settings file if needed
|
|
|
|
ARG ADD_SETTINGS_FILE=mainsite/settings/dev.py
|
|
|
|
|
|
|
|
# add dependencies
|
|
|
|
RUN apk add gettext libjpeg-turbo mariadb-connector-c
|
|
|
|
|
|
|
|
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
|
2021-03-09 13:30:30 -06:00
|
|
|
RUN true
|
2020-04-14 10:45:36 -05:00
|
|
|
COPY $ADD_SETTINGS_FILE mainsite/settings/
|
2021-03-09 13:30:30 -06:00
|
|
|
RUN true
|
2020-04-14 10:45:36 -05:00
|
|
|
COPY peeringdb_server/ peeringdb_server
|
|
|
|
COPY fixtures/ fixtures
|
2020-12-03 19:10:02 +00:00
|
|
|
COPY .coveragerc .coveragerc
|
|
|
|
RUN mkdir coverage
|
2020-04-14 10:45:36 -05:00
|
|
|
|
|
|
|
COPY scripts/manage /usr/bin/
|
2020-12-03 19:10:02 +00:00
|
|
|
COPY Ctl/docker/entrypoint.sh /
|
2020-04-14 10:45:36 -05:00
|
|
|
|
|
|
|
# inetd for whois
|
|
|
|
COPY --from=builder /usr/sbin/inetd /usr/sbin/
|
2021-03-09 13:30:30 -06:00
|
|
|
RUN true
|
2020-04-14 10:45:36 -05:00
|
|
|
COPY Ctl/docker/inetd.conf /etc/
|
|
|
|
|
2020-12-03 19:10:02 +00:00
|
|
|
RUN chown -R pdb:pdb api-cache locale media var/log coverage
|
2020-04-14 10:45:36 -05:00
|
|
|
|
|
|
|
#### test image here
|
|
|
|
FROM final as tester
|
|
|
|
|
|
|
|
WORKDIR /srv/www.peeringdb.com
|
2020-04-15 10:49:53 +00:00
|
|
|
# copy from builder in case we're testing new deps
|
|
|
|
COPY --from=builder /srv/www.peeringdb.com/Pipfile* ./
|
2021-03-09 13:30:30 -06:00
|
|
|
RUN true
|
2020-04-14 10:45:36 -05:00
|
|
|
COPY tests/ tests
|
2020-12-03 19:10:02 +00:00
|
|
|
RUN chown -R pdb:pdb tests/
|
|
|
|
COPY Ctl/docker/entrypoint.sh .
|
2020-04-14 10:45:36 -05:00
|
|
|
|
|
|
|
RUN pip install -U pipenv
|
|
|
|
RUN pipenv install --dev --ignore-pipfile -v
|
2020-12-03 19:10:02 +00:00
|
|
|
#RUN echo `which python`
|
|
|
|
#RUN pip freeze
|
|
|
|
#RUN pytest -v -rA --cov-report term-missing --cov=peeringdb_server tests/
|
|
|
|
|
|
|
|
USER pdb
|
|
|
|
ENTRYPOINT ["./entrypoint.sh"]
|
|
|
|
CMD ["runserver", "$RUNSERVER_BIND"]
|
2020-04-14 10:45:36 -05:00
|
|
|
|
|
|
|
#### entry point from final image, not tester
|
|
|
|
FROM final
|
|
|
|
|
|
|
|
COPY Ctl/docker/entrypoint.sh .
|
2021-03-09 13:30:30 -06:00
|
|
|
RUN true
|
2020-04-14 10:45:36 -05:00
|
|
|
COPY Ctl/docker/django-uwsgi.ini etc/
|
|
|
|
|
|
|
|
ENV UWSGI_SOCKET="127.0.0.1:7002"
|
2020-04-15 10:49:53 +00:00
|
|
|
ENV RUNSERVER_BIND="127.0.0.1:8080"
|
2020-04-14 10:45:36 -05:00
|
|
|
|
|
|
|
USER pdb
|
|
|
|
|
|
|
|
ENTRYPOINT ["./entrypoint.sh"]
|
2020-04-15 10:49:53 +00:00
|
|
|
CMD ["runserver", "$RUNSERVER_BIND"]
|