cacode commited on
Commit
f8a6505
·
verified ·
1 Parent(s): b07f32c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -2,11 +2,15 @@ FROM ubuntu:24.04
2
 
3
  WORKDIR /app
4
 
5
- RUN apt update && apt install -y ca-certificates
 
 
6
 
7
  COPY aigc-bypasser /app/app
8
  RUN chmod +x /app/app
9
 
 
 
10
  EXPOSE 8000
11
 
12
  CMD ["/app/app"]
 
2
 
3
  WORKDIR /app
4
 
5
+ RUN apt update && apt install -y python3 python3-pip ca-certificates
6
+
7
+ RUN pip install --no-cache-dir setuptools jaraco.functools jaraco.text
8
 
9
  COPY aigc-bypasser /app/app
10
  RUN chmod +x /app/app
11
 
12
+ ENV PORT=8000
13
+
14
  EXPOSE 8000
15
 
16
  CMD ["/app/app"]