openai/openai-python

Public

mirrored fromhttps://github.com/openai/openai-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.0.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.devcontainer/Dockerfile

27lines · modecode

1# syntax=docker/dockerfile:1
2FROM debian:bookworm-slim
3
4RUN apt-get update && apt-get install -y \
5 libxkbcommon0 \
6 ca-certificates \
7 make \
8 curl \
9 git \
10 unzip \
11 libc++1 \
12 vim \
13 termcap \
14 && apt-get clean autoclean
15
16RUN curl -sSf https://rye-up.com/get | RYE_VERSION="0.15.2" RYE_INSTALL_OPTION="--yes" bash
17ENV PATH=/root/.rye/shims:$PATH
18
19WORKDIR /workspace
20
21COPY README.md .python-version pyproject.toml requirements.lock requirements-dev.lock /workspace/
22
23RUN rye sync --all-features
24
25COPY . /workspace
26
27CMD ["rye", "shell"]