Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -4,9 +4,7 @@ RUN apt install git
|
|
4 |
RUN git clone https://github.com/Hansimov/hf-llm-api.git /app
|
5 |
WORKDIR "/app"
|
6 |
RUN mkdir /.cache && chmod 777 /.cache
|
7 |
-
RUN mkdir -p /app/configs
|
8 |
-
&& echo '{}' > /app/configs/secrets.json
|
9 |
-
&& chmod 777 /app/configs/secrets.json
|
10 |
RUN pip install torch
|
11 |
RUN pip install tensorflow>=2.0
|
12 |
RUN pip install flax
|
|
|
4 |
RUN git clone https://github.com/Hansimov/hf-llm-api.git /app
|
5 |
WORKDIR "/app"
|
6 |
RUN mkdir /.cache && chmod 777 /.cache
|
7 |
+
RUN mkdir -p /app/configs && echo '{}' > /app/configs/secrets.json && chmod 777 /app/configs/secrets.json
|
|
|
|
|
8 |
RUN pip install torch
|
9 |
RUN pip install tensorflow>=2.0
|
10 |
RUN pip install flax
|