fmartingr
/
jeeves
Archived
1
0
Fork 0
This repository has been archived on 2021-02-14. You can view files and clone it, but cannot push or open issues or pull requests.
jeeves/Dockerfile

12 lines
194 B
Docker

FROM python:3
ENV PYTHONUNBUFFERED 1
WORKDIR /opt/app
ADD . /opt/app
RUN pip install poetry && \
poetry install
CMD ["poetry", "run", "python", "manage.py", "runserver", "0.0.0.0:8000"]