Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -10,7 +10,7 @@ USER user
|
|
10 |
WORKDIR /app
|
11 |
|
12 |
# Receive Git URL from build argument
|
13 |
-
ARG
|
14 |
RUN echo "Cloning repository: ${GIT_REPO}" && \
|
15 |
git clone https://github.com/viratxd/fastn8n.git /app/fastn8n
|
16 |
|
@@ -20,7 +20,7 @@ WORKDIR /app/fastn8n
|
|
20 |
RUN python -m venv shared_env && \
|
21 |
shared_env/bin/pip install --upgrade pip && \
|
22 |
shared_env/bin/pip install -r requirements.txt && \
|
23 |
-
shared_env/bin/pip install numpy opencv-python
|
24 |
|
25 |
EXPOSE 7860
|
26 |
CMD ["shared_env/bin/python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
10 |
WORKDIR /app
|
11 |
|
12 |
# Receive Git URL from build argument
|
13 |
+
ARG GIT_REP
|
14 |
RUN echo "Cloning repository: ${GIT_REPO}" && \
|
15 |
git clone https://github.com/viratxd/fastn8n.git /app/fastn8n
|
16 |
|
|
|
20 |
RUN python -m venv shared_env && \
|
21 |
shared_env/bin/pip install --upgrade pip && \
|
22 |
shared_env/bin/pip install -r requirements.txt && \
|
23 |
+
shared_env/bin/pip install numpy opencv-python edge-tts pydub
|
24 |
|
25 |
EXPOSE 7860
|
26 |
CMD ["shared_env/bin/python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|