We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ENTRYPOINT
Dockerfile
1 parent 04c4a39 commit 58d25fbCopy full SHA for 58d25fb
Dockerfile
@@ -1,2 +1,12 @@
1
-FROM python:3.9-slim
2
-RUN pip3 install cloudinary-cli --no-cache
+# syntax=docker/dockerfile:1
+
3
+ARG PYTHON_VERSION
4
+FROM python:${PYTHON_VERSION:-3.12-slim}
5
6
+# For available labels, see OCI Annotations Spec docs:
7
+# https://specs.opencontainers.org/image-spec/annotations/#pre-defined-annotation-keys
8
+LABEL org.opencontainers.image.source="https://github.com/cloudinary/cloudinary-cli"
9
10
+RUN pip3 install --no-cache cloudinary-cli
11
12
+ENTRYPOINT [ "cloudinary" ]
0 commit comments