Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -12,4 +12,5 @@ RUN --mount=type=secret,id=TOKEN,mode=0444,required=true \
|
|
12 |
COPY . .
|
13 |
RUN python get_binary.py
|
14 |
RUN chmod 777 /code/bito && chmod +x /code/bito && chmod 777 /tmp && chmod 777 /code && ls -l /code/bito
|
|
|
15 |
CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860", "--timeout", "120", "--workers", "4", "--worker-class", "gevent", "--log-level=info"]
|
|
|
12 |
COPY . .
|
13 |
RUN python get_binary.py
|
14 |
RUN chmod 777 /code/bito && chmod +x /code/bito && chmod 777 /tmp && chmod 777 /code && ls -l /code/bito
|
15 |
+
RUN /code/bito -h
|
16 |
CMD ["gunicorn", "app:app", "--bind", "0.0.0.0:7860", "--timeout", "120", "--workers", "4", "--worker-class", "gevent", "--log-level=info"]
|