mirror of https://github.com/Damillora/Altessimo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
476 B
19 lines
476 B
FROM python:alpine
|
|
|
|
ADD requirements.txt /app/requirements.txt
|
|
RUN apk update \
|
|
&& apk add --virtual build-deps gcc python3-dev musl-dev \
|
|
&& apk add --no-cache mariadb-dev jpeg-dev zlib-dev libpng-dev \
|
|
&& pip install --no-cache-dir -r /app/requirements.txt \
|
|
&& apk del build-deps
|
|
ADD . /app
|
|
WORKDIR /app
|
|
|
|
RUN python manage.py collectstatic
|
|
|
|
EXPOSE 8000
|
|
|
|
ENV DJANGO_SETTINGS_MODULE=altessimo.production
|
|
|
|
CMD ["gunicorn", "--bind", ":8000", "altessimo.wsgi"]
|