UntilDot commited on
Commit
902d20c
·
verified ·
1 Parent(s): 719c6f4

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/NinePlusOne/UnHided.git .
5
+ RUN pip install --no-cache-dir -r requirements.txt
6
+ EXPOSE 7860
7
+ CMD ["uvicorn", "run:main_app", "--host", "0.0.0.0", "--port", "7860", "--workers", "4"]