f2306a3d11
Codespell / Check for spelling errors (push) Waiting to run
Lint and Test / lint_test (3.11) (push) Waiting to run
Lint and Test / lint_test (3.10) (push) Waiting to run
Lint and Test / lint_test (3.12) (push) Waiting to run
Publish to PyPI and release / Build distribution (push) Waiting to run
Publish to PyPI and release / Publish to PyPI (push) Blocked by required conditions
Publish to PyPI and release / Make release (push) Blocked by required conditions
17 lines
288 B
Docker
17 lines
288 B
Docker
FROM python:3-slim
|
|
|
|
ENV SHELL_INTERACTION=false
|
|
ENV PRETTIFY_MARKDOWN=false
|
|
ENV OS_NAME=auto
|
|
ENV SHELL_NAME=auto
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN apt-get update && apt-get install -y gcc
|
|
RUN pip install --no-cache /app && mkdir -p /tmp/shell_gpt
|
|
|
|
VOLUME /tmp/shell_gpt
|
|
|
|
ENTRYPOINT ["sgpt"]
|