Skip to content

Commit d450dee

Browse files
committed
try fix docker
1 parent a93df07 commit d450dee

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
FROM nvidia/cuda:12.6.3-runtime-ubuntu22.04
22

3+
# Set timezone and configure non-interactive installation
4+
ENV DEBIAN_FRONTEND=noninteractive
5+
ENV TZ=UTC
6+
37
# Install Python 3.12 from deadsnakes PPA
48
RUN apt-get update \
59
&& apt-get install -y software-properties-common \
610
&& add-apt-repository ppa:deadsnakes/ppa -y \
711
&& apt-get update \
8-
&& 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 \
913
&& apt-get clean \
1014
&& rm -rf /var/lib/apt/lists/*
1115

0 commit comments

Comments
 (0)