KitTheBit commited on
Commit
f4a3253
·
verified ·
1 Parent(s): b7fa892

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim-bullseye
2
+ WORKDIR /app
3
+ RUN apt-get update && apt-get install -y git
4
+ RUN git clone https://github.com/Urlo30/Scracth.git .
5
+ RUN pip install --no-cache-dir -r requirements.txt
6
+ EXPOSE 8080
7
+ CMD ["python", "run.py"]