FROM python:3-slim
COPY server.py /server.py
COPY start.sh /start.sh
EXPOSE 80
CMD ["/bin/sh", "/start.sh"]