Changed docker CMD to ENTRYPOINT (#1449)

fix #1448
This commit is contained in:
rpkak 2021-04-20 02:37:51 +02:00 committed by GitHub
parent 1680f49264
commit a3ed2db4ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,4 +2,4 @@ FROM python:3.8
RUN pip install rq
CMD ["rq", "worker"]
ENTRYPOINT ["rq", "worker"]