Skip to content

Commit 08ac838

Browse files
authored
Merge pull request #38 from habecker/docker-verbosity
Add quiet flags to apt-get
2 parents 128006d + bdb2753 commit 08ac838

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)