Dockerfile lint errors fix (#1493)

Fix the Dockerfile linter errors and most warnings
This commit is contained in:
TianlongLiang
2022-09-22 13:06:11 +08:00
committed by GitHub
parent ba3af0b196
commit ee210d019f
11 changed files with 102 additions and 191 deletions

View File

@ -1,6 +1,6 @@
FROM python:3.5
WORKDIR /app
ADD server/wasm_server.py /app/server/
COPY server/wasm_server.py /app/server/
ENTRYPOINT ["python", "server/wasm_server.py"]