Spaces:
Sleeping
Sleeping
File size: 228 Bytes
8b94d80 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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"]
|