Convert CMD to JSON notation to make hadolint happy

This commit is contained in:
Sandro Jäckel 2020-09-04 18:12:48 +02:00
parent e00c40d457
commit a657ff33be
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -11,5 +11,5 @@ RUN flask db init \
&& flask db migrate\
&& flask db upgrade
CMD flask run --host 0.0.0.0
CMD [ "flask", "run", "--host", "0.0.0.0" ]
EXPOSE 5000