mirror of
https://github.com/docker/build-push-action.git
synced 2025-06-28 15:26:42 +02:00
7 lines
141 B
Text
7 lines
141 B
Text
![]() |
FROM python:3.11-slim
|
||
|
|
||
|
RUN apt-get update && apt-get install -y \
|
||
|
curl \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
CMD ["python3", "--version"]
|