This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
spadinastan/services/monolith/Dockerfile

12 lines
202 B
Text
Raw Normal View History

FROM python:3.9.15
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY ./requirements.txt ./requirements.txt
RUN pip install -r ./requirements.txt
CMD ["python", "src/manage.py", "runserver", "0.0.0.0:8000"]