mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-16 21:12:13 +00:00
12 lines
203 B
Docker
12 lines
203 B
Docker
FROM python:3.6
|
|
|
|
WORKDIR /app
|
|
|
|
ADD . /app
|
|
|
|
RUN pip install -r requirements.txt && \
|
|
python manage.py collectstatic --noinput
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] |