Suppress hadolint warnings for pinning versions part (#1511)

Related to https://github.com/bytecodealliance/wasm-micro-runtime/issues/1418.

Suppress hadolint warnings for pinning version.
This is because these warnings are for reproducible builds.
But for development and CIs, ordinary case developers have to use the latest packages.
This commit is contained in:
Hiroshi Hatake
2022-09-23 11:34:47 +09:00
committed by GitHub
parent 1ff04a9125
commit 3693cbe54d
4 changed files with 10 additions and 3 deletions

View File

@ -3,7 +3,7 @@ FROM python:3.5
WORKDIR /app
COPY . /app
# hadolint ignore=DL3013
RUN pip install django --no-cache-dir
ENTRYPOINT ["python", "manage.py", "runserver", "0.0.0.0:80"]