FROM python:3.10 WORKDIR /app COPY requirements.txt . RUN pip3 install -r requirements.txt COPY code /app ENTRYPOINT [ "python", "wingl.py" ]