diff --git a/Dockerfile b/Dockerfile index a499425..9da178e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,6 @@ RUN pip install --no-cache-dir -r requirements.txt #RUN pip install --upgrade pip #RUN --mount=type=cache,id=custom-pip,target=/root/.cache/pip pip install -r requirements.txt -CMD ["python3", "manage.py", "runserver", "0:8000"] \ No newline at end of file +CMD ["python3", "manage.py", "runserver", "0:8000"] + + diff --git a/docker-compose.yaml b/docker-compose.yaml index 5dde1a1..74269ad 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -6,4 +6,7 @@ services: command: - bash -c "python manage.py makemigrations && python manage.py migrate && python manage.py runserver 0.0.0.0:8000" ports: - - 8000:8000 \ No newline at end of file + - 8000:8000 + + +