From e05140e0107bd187c49eed9e7e37e1ecfbad4570 Mon Sep 17 00:00:00 2001 From: Jan Wijffels Date: Wed, 22 May 2024 15:16:34 +0200 Subject: [PATCH] init Dockerfile whisper --- whisper/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 whisper/Dockerfile diff --git a/whisper/Dockerfile b/whisper/Dockerfile new file mode 100644 index 0000000..92f677c --- /dev/null +++ b/whisper/Dockerfile @@ -0,0 +1,9 @@ +ARG R_VERSION=4.4.0 +ARG IMAGE_REGISTRY=docker.io +ARG IMAGE_ORG=rocker +FROM $IMAGE_REGISTRY/$IMAGE_ORG/cuda:$R_VERSION +LABEL org.opencontainers.image.licenses="MIT" \ + org.opencontainers.image.vendor="BNOSAC" \ + org.opencontainers.image.authors="Jan Wijffels " + +CMD ["R"] \ No newline at end of file