Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -1,7 +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/flixtx/
|
| 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"]
|
|
|
|
| 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/flixtx/bsweb3.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"]
|