This commit is contained in:
Yohann D'anello 2020-02-02 18:22:28 +01:00
parent a6b5d8b822
commit 9b352582a3
2 changed files with 25 additions and 0 deletions

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
FROM python:3-buster
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
RUN apt update && \
apt install -y gettext nginx uwsgi uwsgi-plugin-python3 && \
rm -rf /var/lib/apt/lists/*
COPY requirements.txt /code/
RUN pip install -r requirements.txt
COPY . /code/
ENTRYPOINT ["/code/entrypoint.sh"]
EXPOSE 8000

7
entrypoint.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
python manage.py compilemessages
python manage.py makemigrations
python manage.py migrate
# TODO: use uwsgi in production
python manage.py runserver 0.0.0.0:8000