Skip to content

Commit ebf6245

Browse files
authored
Update Dockerfile
Using apt-get instead of apt
1 parent 745c6e1 commit ebf6245

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docker/ubuntu22.04-cuda12.2.0/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM nvidia/cuda:12.2.0-devel-ubuntu22.04
22
LABEL maintainer="[email protected]"
33

4-
RUN apt update && \
5-
apt install -y --no-install-recommends \
4+
RUN apt-get update && \
5+
apt-get install -y --no-install-recommends \
66
build-essential \
77
g++ \
88
make \
@@ -22,12 +22,12 @@ RUN apt update && \
2222
patch \
2323
ffmpeg \
2424
vim && \
25-
apt update && \
26-
apt install -y --no-install-recommends\
25+
apt-get update && \
26+
apt-get install -y --no-install-recommends\
2727
software-properties-common && \
2828
apt-add-repository multiverse && \
29-
apt update && \
30-
yes | DEBIAN_FRONTEND=noninteractive apt install -yqq --no-install-recommends\
29+
apt-get update && \
30+
yes | DEBIAN_FRONTEND=noninteractive apt-get install -yqq --no-install-recommends\
3131
intel-mkl && \
3232
rm -rf /var/lib/apt/lists/*
3333

0 commit comments

Comments
 (0)