g4f / Dockerfile
playmak3r's picture
build: create har_and_cookies dir
99b6b3e
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir --upgrade g4f[all]
RUN mkdir har_and_cookies
RUN chmod a+rwX har_and_cookies
RUN ls
EXPOSE 1337
CMD ["python", "/app/app.py"]