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.
1 parent a93df07 commit d450deeCopy full SHA for d450dee
Dockerfile
@@ -1,11 +1,15 @@
1
FROM nvidia/cuda:12.6.3-runtime-ubuntu22.04
2
3
+# Set timezone and configure non-interactive installation
4
+ENV DEBIAN_FRONTEND=noninteractive
5
+ENV TZ=UTC
6
+
7
# Install Python 3.12 from deadsnakes PPA
8
RUN apt-get update \
9
&& apt-get install -y software-properties-common \
10
&& add-apt-repository ppa:deadsnakes/ppa -y \
11
&& apt-get update \
- && apt-get install git python3.12 python3.12-venv python3.12-dev ffmpeg curl -y \
12
+ && apt-get install -y git python3.12 python3.12-venv python3.12-dev ffmpeg curl tzdata \
13
&& apt-get clean \
14
&& rm -rf /var/lib/apt/lists/*
15
0 commit comments