Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
FROM python:3.10-slim
|
| 2 |
RUN apt-get update && apt-get install -y git libgl1 libglib2.0-0 && rm -rf /var/lib/apt/lists/*
|
| 3 |
WORKDIR /app
|
| 4 |
-
RUN git clone https://github.com/dmMaze/BallonsTranslator.git.
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt gradio
|
| 6 |
-
COPY app.py.
|
| 7 |
EXPOSE 7860
|
| 8 |
CMD ["python", "app.py"]
|
|
|
|
| 1 |
FROM python:3.10-slim
|
| 2 |
RUN apt-get update && apt-get install -y git libgl1 libglib2.0-0 && rm -rf /var/lib/apt/lists/*
|
| 3 |
WORKDIR /app
|
| 4 |
+
RUN git clone https://github.com/dmMaze/BallonsTranslator.git .
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt gradio
|
| 6 |
+
COPY app.py .
|
| 7 |
EXPOSE 7860
|
| 8 |
CMD ["python", "app.py"]
|