4 lines
84 B
Docker
4 lines
84 B
Docker
|
FROM python:3-slim
|
||
|
COPY server.py /server.py
|
||
|
EXPOSE 80
|
||
|
CMD ["python3", "/server.py"]
|