exe_executor / Dockerfile
Peeble's picture
Create Dockerfile
8b94d80 verified
raw
history blame contribute delete
228 Bytes
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"]