FROM python:3.9-slim

WORKDIR /app

COPY script.py .

RUN apt-get update && apt-get -y install curl

CMD [ "python", "script.py" ]