Skip to content

Commit bdb2753

Browse files
authored
Add quiet flags to apt-get
Also removed one `apt-get update` as there are no repo changes
1 parent 128006d commit bdb2753

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docker/server.Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ FROM $BASE
44

55
# install dependencies
66
RUN dpkg --add-architecture i386
7-
RUN apt-get update && apt-get install -y software-properties-common
7+
RUN apt-get -qq update && apt-get -qq install -y software-properties-common
88
RUN add-apt-repository ppa:deadsnakes/ppa
9-
RUN apt-get update && apt-get install -y python3.8:i386 libpython3.8:i386
10-
RUN apt-get update && apt-get install -y libstdc++6:i386
9+
RUN apt-get -qq update && apt-get -qq install -y python3.8:i386 libpython3.8:i386
10+
RUN apt-get install -y libstdc++6:i386
1111

1212
WORKDIR /server
1313

14-
CMD "./start_server.sh"
14+
CMD "./start_server.sh"

0 commit comments

Comments
 (0)