mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-08 20:56:13 +00:00
10 lines
145 B
Docker
10 lines
145 B
Docker
FROM python:3.5
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN pip install django --no-cache-dir
|
|
|
|
ENTRYPOINT ["python", "manage.py", "runserver", "0.0.0.0:80"]
|
|
|