chansung commited on
Commit
9bd04be
1 Parent(s): 20ce4ba

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 ["QUANTIZE=$QUANTIZE", "entrypoint.sh"]
 
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"]