build: create har_and_cookies dir
Browse files- Dockerfile +5 -0
Dockerfile
CHANGED
@@ -3,5 +3,10 @@ WORKDIR /app
|
|
3 |
COPY . /app
|
4 |
|
5 |
RUN pip install --no-cache-dir --upgrade g4f[all]
|
|
|
|
|
|
|
|
|
6 |
EXPOSE 1337
|
|
|
7 |
CMD ["python", "/app/app.py"]
|
|
|
3 |
COPY . /app
|
4 |
|
5 |
RUN pip install --no-cache-dir --upgrade g4f[all]
|
6 |
+
RUN mkdir har_and_cookies
|
7 |
+
RUN chmod a+rwX har_and_cookies
|
8 |
+
RUN ls
|
9 |
+
|
10 |
EXPOSE 1337
|
11 |
+
|
12 |
CMD ["python", "/app/app.py"]
|