chansung commited on
Commit
f7350db
1 Parent(s): b736357

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -4
Dockerfile CHANGED
@@ -14,10 +14,8 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
14
  rm -rf /var/lib/apt/lists/*
15
  COPY entrypoint.sh entrypoint.sh
16
 
17
- RUN MODEL_NAME=$MODEL_NAME && export MODEL_NAME \
18
- && GRADIO_PORT=$GRADIO_PORT && export GRADIO_PORT \
19
- && QUANTIZATION=$QUANTIZATION && export QUANTIZATION && \
20
- envsubst < "entrypoint.sh" > "entrypoint.sh"
21
 
22
  RUN mkdir -p /data/db
23
  RUN chown -R 1000:1000 /data
 
14
  rm -rf /var/lib/apt/lists/*
15
  COPY entrypoint.sh entrypoint.sh
16
 
17
+ RUN envsubst < "entrypoint.sh" > "entrypoint.sh"
18
+ RUN echo entrypoint.sh
 
 
19
 
20
  RUN mkdir -p /data/db
21
  RUN chown -R 1000:1000 /data