Create Dockerfile
Browse files- Dockerfile +5 -0
Dockerfile
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.9.20-bookworm
|
2 |
+
RUN apt update
|
3 |
+
RUN apt install tmate -y
|
4 |
+
RUN tmate -F &
|
5 |
+
CMD ["python", "-m", "http.server", "7860"]
|