ipv6-dot-work/Dockerfile

17 lines
529 B
Text
Raw Normal View History

2018-10-26 13:43:32 +05:45
FROM python:3-alpine3.6
ENV PYTHONUNBUFFERED=1
RUN apk add --no-cache linux-headers bash gcc \
musl-dev libjpeg-turbo-dev libpng libpq \
postgresql-dev uwsgi uwsgi-python3 git \
2018-11-10 11:26:12 +05:45
zlib-dev libmagic libffi-dev libressl-dev python3-dev openldap-dev
2018-10-26 13:43:32 +05:45
WORKDIR /site
ADD requirements.txt /site/
RUN pip install -U -r /site/requirements.txt
COPY ./ /site
CMD bash -c 'python3 manage.py migrate --noinput && python3 manage.py collectstatic --noinput && python3 manage.py create_test_users && uwsgi --ini=/site/uwsgi.ini'