designfailure commited on
Commit
5fe96cc
·
verified ·
1 Parent(s): f254af8

Create dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +19 -0
dockerfile ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.11-slim
2
+
3
+ WORKDIR /app
4
+
5
+ RUN apt-get update && apt-get install -y \
6
+ curl \
7
+ git \
8
+ ffmpeg \
9
+ && rm -rf /var/lib/apt/lists/*
10
+
11
+ COPY . .
12
+
13
+ RUN pip install uv
14
+
15
+ RUN uv pip install --system -e ".[all]"
16
+
17
+ EXPOSE 7860
18
+
19
+ CMD ["hermes"]