From 3432f2535a770dfaaf7caddfbb09228023715886 Mon Sep 17 00:00:00 2001 From: Kirosbr Date: Wed, 30 Oct 2024 17:17:07 +0100 Subject: [PATCH] switch bash to sh --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3d977ec..6a53b71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,6 @@ RUN source venv/bin/activate && python manage.py makemigrations && python manage EXPOSE 8080 #CMD ["python", "manage.py", "runserver", "0.0.0.0:8080"] -CMD ["bash", "-c", "source venv/bin/activate && python manage.py runserver 0.0.0.0:8080"] +CMD ["sh", "-c", "source venv/bin/activate && python manage.py runserver 0.0.0.0:8080"] #CMD ["./startup.sh"]