mirror of
https://github.com/james-m-jordan/openai-cookbook.git
synced 2025-05-09 19:32:38 +00:00
15 lines
318 B
Plaintext
15 lines
318 B
Plaintext
![]() |
FROM python:3.10
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install -y build-essential && \
|
||
|
rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
# Create a non-root user
|
||
|
RUN useradd -m sandboxuser
|
||
|
USER sandboxuser
|
||
|
WORKDIR /home/sandboxuser
|
||
|
|
||
|
COPY requirements.txt .
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
CMD ["python", "--version"]
|