2020-04-15 21:00:04 +02:00
|
|
|
FROM python:3.8-alpine
|
|
|
|
WORKDIR /app
|
2020-04-20 18:56:29 +02:00
|
|
|
|
|
|
|
# set env
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE 1
|
|
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
|
2020-04-25 10:22:22 +02:00
|
|
|
# install required packages
|
|
|
|
RUN apk add --no-cache postgresql-dev gcc python3-dev musl-dev gettext postgresql-client nginx supervisor
|
2020-04-20 18:56:29 +02:00
|
|
|
|
|
|
|
# install dependencies
|
|
|
|
ADD ./requirements.txt .
|
2020-04-15 21:00:04 +02:00
|
|
|
RUN pip install -r requirements.txt
|
2020-04-20 18:56:29 +02:00
|
|
|
|
2020-04-25 10:22:22 +02:00
|
|
|
# add supervisor and nginx configs
|
|
|
|
ADD ./docker/nginx.conf /etc/nginx/nginx.conf
|
|
|
|
ADD ./docker/supervisord.conf /etc/supervisord.conf
|
|
|
|
|
2020-04-20 18:56:29 +02:00
|
|
|
# add user
|
|
|
|
RUN addgroup -S portier && adduser -S portier -G portier
|
|
|
|
|
|
|
|
# add code
|
|
|
|
ADD --chown=portier:portier . /app
|
2020-04-23 20:19:49 +02:00
|
|
|
RUN ./manage.py collectstatic --noinput --link
|
|
|
|
RUN ./manage.py compilemessages
|
|
|
|
|
2020-05-01 16:08:07 +02:00
|
|
|
CMD ["/app/start.sh"]
|