Skip to content

Commit c46b8bd

Browse files
committed
Force using bash when building docker
1 parent f1589d1 commit c46b8bd

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ ARG UBUNTU_VERSION=24.04
33
FROM ubuntu:${UBUNTU_VERSION}
44

55
ARG VERSION
6-
LABEL maintainer="JamesNULLiu jamesnulliu@gmail.com"
7-
LABEL version=${VERSION}
8-
96
# https://docs.nvidia.com/deeplearning/cudnn/backend/latest/reference/support-matrix.html
107
ARG CUDA_VERSION=12.6.0
118
ARG CUDNN_VERSION=9.8.0
@@ -17,6 +14,11 @@ ARG LLVM_VERSION=21
1714
ENV LANGUAGE=en_US.UTF-8
1815
ENV LANG=en_US.UTF-8
1916

17+
LABEL maintainer="JamesNULLiu jamesnulliu@gmail.com"
18+
LABEL version=${VERSION}
19+
20+
SHELL ["/bin/bash", "-c"]
21+
2022
# Some basic tools
2123
RUN apt-get update && apt-get upgrade -y && \
2224
apt-get install -y \

scripts/.image-configs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
IMAGE_VERSION=2.0.0
1+
IMAGE_VERSION=2.0.1
22
IMAGE_TAG=v${IMAGE_VERSION}-torch2.7-cuda12.6-ubuntu24.04
33
IMAGE_NAME=jamesnulliu/deeplearning:${IMAGE_TAG}

0 commit comments

Comments
 (0)