forked from xiaohei/taiji-AI-PAD
10 lines
203 B
Docker
10 lines
203 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /workspace
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends git curl build-essential \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD ["sleep", "infinity"]
|