GPT4FREE / Dockerfile
imseldrith's picture
Update Dockerfile
67eeb3a
raw
history blame contribute delete
228 Bytes
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"]