FROM ubuntu:20.04 WORKDIR /app # Install dependencies RUN apt update && apt install -y wine64 python3 python3-pip # Copy project files COPY . /app RUN pip install -r requirements.txt CMD ["python3", "app.py"]