Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
1 contributor

Users who have contributed to this file

13 lines (9 sloc) 231 Bytes
FROM python:3.7
RUN apt-get update && apt-get install -y \
netcat
WORKDIR /app
COPY requirements.txt /app
RUN pip install -r requirements.txt
COPY . /app/
ENTRYPOINT ["python", "manage.py"]
CMD ["runserver", "0.0.0.0:8000"]
You can’t perform that action at this time.