Create httpserver

This commit is contained in:
Simon Warta
2022-04-13 06:57:34 +02:00
parent e5947cf650
commit b8d7db9311
6 changed files with 128 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.9-alpine
WORKDIR /usr/src/app
COPY echo.py ./
ENTRYPOINT ["python", "./echo.py"]