File size: 228 Bytes
46f8917
 
 
 
 
 
 
 
 
6aed2ff
46f8917
67eeb3a
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3-alpine

WORKDIR /app
COPY ./requirements.txt /app
COPY ./src/* /app

RUN pip3 install -r requirements.txt

ENV PORT=5500
EXPOSE $PORT/tcp

CMD ["python3", "/app/FreeGPT4_Server.py", "--cookie-file", "cookies.json"]