From ff2a8111bf1464275b2596e0d09d032a8889d51c Mon Sep 17 00:00:00 2001 From: Abdellah Fytahi <61129849+Sceptyre@users.noreply.github.com> Date: Mon, 15 Apr 2024 22:06:25 -0400 Subject: [PATCH] Set container default command Sets the default container exec command to start the discordgsm service --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index d54ec8a..26fc54d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,3 +17,6 @@ RUN pip install --no-cache-dir -r requirements.txt # Copy the current directory contents into the container at /app COPY . . + +# Set default container start command +CMD ["python3", "main.py"]