Hugdu commited on
Commit
947803d
·
verified ·
1 Parent(s): f4f53e0

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +14 -0
Dockerfile ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ RUN apt-get update && apt-get install -y --no-install-recommends \
4
+ qemu-system-x86 \
5
+ qemu-utils \
6
+ && rm -rf /var/lib/apt/lists/*
7
+
8
+ WORKDIR /app
9
+
10
+ COPY main.py /app/main.py
11
+
12
+ EXPOSE 7860
13
+
14
+ CMD ["python3", "main.py"]