Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -6
Dockerfile
CHANGED
@@ -3,9 +3,6 @@ ARG QUANTIZE
|
|
3 |
|
4 |
FROM ghcr.io/huggingface/text-generation-inference:latest
|
5 |
|
6 |
-
ARG MODEL_NAME
|
7 |
-
ARG QUANTIZE
|
8 |
-
|
9 |
ENV TZ=Europe/Paris \
|
10 |
PORT=3000
|
11 |
|
@@ -43,7 +40,5 @@ ENV HOME=/home/user \
|
|
43 |
COPY app app
|
44 |
RUN pip install -r app/requirements.txt
|
45 |
|
46 |
-
RUN cat entrypoint.sh
|
47 |
-
|
48 |
ENTRYPOINT ["/bin/bash"]
|
49 |
-
CMD ["
|
|
|
3 |
|
4 |
FROM ghcr.io/huggingface/text-generation-inference:latest
|
5 |
|
|
|
|
|
|
|
6 |
ENV TZ=Europe/Paris \
|
7 |
PORT=3000
|
8 |
|
|
|
40 |
COPY app app
|
41 |
RUN pip install -r app/requirements.txt
|
42 |
|
|
|
|
|
43 |
ENTRYPOINT ["/bin/bash"]
|
44 |
+
CMD ["entrypoint.sh"]
|