Selaa lähdekoodia

docker/Dockerfile.debian12: separate apt update

Daniel-Constantin Mierla 7 kuukautta sitten
vanhempi
commit
949c2608fe
1 muutettua tiedostoa jossa 3 lisäystä ja 1 poistoa
  1. 3 1
      docker/Dockerfile.debian12

+ 3 - 1
docker/Dockerfile.debian12

@@ -2,7 +2,9 @@ FROM debian:bookworm
 
 
 RUN groupadd -r mysql && useradd -r -g mysql mysql
 RUN groupadd -r mysql && useradd -r -g mysql mysql
 
 
-RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --assume-yes apt-utils \
+RUN apt-get update
+
+RUN DEBIAN_FRONTEND=noninteractive apt-get install --assume-yes apt-utils \
   autoconf gcc g++ make procps \
   autoconf gcc g++ make procps \
   coreutils exuberant-ctags curl gawk gdb git jq lynx netcat-traditional ngrep sed sip-tester vim wget \
   coreutils exuberant-ctags curl gawk gdb git jq lynx netcat-traditional ngrep sed sip-tester vim wget \
   bison libtool \
   bison libtool \