🚀 Dockerfile

pull/3/head
Hugo LIVET 1 year ago
parent 80418083e5
commit 0eaa3bc594

@ -0,0 +1,9 @@
FROM django
EXPOSE 8000
WORKDIR /app
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . /app
ENTRYPOINT ["python3", "manage.py", "runserver", "0.0.0.0:8000"]
Loading…
Cancel
Save