docker setup
This commit is contained in:
10
srcs/Dockerfile
Normal file
10
srcs/Dockerfile
Normal file
@ -0,0 +1,10 @@
|
||||
FROM python
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
COPY . .
|
||||
|
||||
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]
|
Reference in New Issue
Block a user