chatgpt/Dockerfile

10 lines
230 B
Docker
Raw Normal View History

2023-10-10 17:03:57 +02:00
FROM python:3.12-alpine
RUN apk add --upgrade --no-cache git vim bash
RUN pip install --upgrade pip
RUN pip install --no-build-isolation git+https://github.com/marcolardera/chatgpt-cli
ENTRYPOINT [ "tail", "-f", "/dev/null" ]