roxky commited on
Commit
6e53177
·
verified ·
1 Parent(s): 535a554

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -1,10 +1,11 @@
1
- FROM python:3.12
2
 
3
  ARG G4F_IGNORED_PROVIDERS
4
 
5
  RUN useradd -m -u 1000 user
6
  WORKDIR /app
7
 
 
8
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
9
 
10
  COPY --chown=user . /app
 
1
+ FROM python:3.9
2
 
3
  ARG G4F_IGNORED_PROVIDERS
4
 
5
  RUN useradd -m -u 1000 user
6
  WORKDIR /app
7
 
8
+ COPY --chown=user ./requirements.txt requirements.txt
9
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
10
 
11
  COPY --chown=user . /app