mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 15:05:19 +00:00
3693cbe54d
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.
10 lines
169 B
Docker
10 lines
169 B
Docker
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"]
|