ft_transcendence/srcs/Dockerfile

11 lines
155 B
Docker
Raw Normal View History

2023-11-23 10:43:30 -05:00
FROM python
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]