ci(Dockerfile): modify CMD
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -33,4 +33,4 @@ RUN useradd -m appuser && chown -R appuser:appuser /home/appuser
|
|
33 |
USER appuser
|
34 |
|
35 |
# set command/entrypoint, adapt to fit your needs
|
36 |
-
CMD ["/bin/gunicorn", "-w", "3", "-b", "0.0.0.0:8080", "--timeout", "300", "app"]
|
|
|
33 |
USER appuser
|
34 |
|
35 |
# set command/entrypoint, adapt to fit your needs
|
36 |
+
CMD ["/bin/gunicorn", "-w", "3", "-b", "0.0.0.0:8080", "--timeout", "300", "app:app"]
|