ci(Dev): Using docker to serve django and vue on same host.
This commit is contained in:
8
django.Dockerfile
Normal file
8
django.Dockerfile
Normal file
@@ -0,0 +1,8 @@
|
||||
from python:3.12-slim
|
||||
|
||||
WORKDIR /app/
|
||||
|
||||
COPY requirements.txt ./
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
CMD ["python", "manage.py", "runserver", "0.0.0.0:9090"]
|
||||
Reference in New Issue
Block a user