2
0
Fork 0
mirror of https://code.forgejo.org/docker/build-push-action.git synced 2025-08-29 17:40:55 +00:00
docker-build-push-action/__tests__/Dockerfile
2025-03-20 14:04:08 +05:30

7 lines
No EOL
141 B
Docker

FROM python:3.11-slim
RUN apt-get update && apt-get install -y \
curl \
&& rm -rf /var/lib/apt/lists/*
CMD ["python3", "--version"]