File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -14,17 +14,17 @@ ENV GS_USER=gemstone
1414ENV GS_UID=1001
1515ENV GS_GID=100
1616
17- RUN apt-get update \
18- && apt-get upgrade -y \
19- && apt-get install --assume-yes --no-install-recommends \
17+ RUN apt update \
18+ && apt upgrade --assume-yes \
19+ && apt install --assume-yes --no-install-recommends \
2020 ca-certificates \
2121 gosu \
2222 locales \
2323 libcap2-bin \
2424 && echo "en_US.UTF-8 UTF-8" > /etc/locale.gen \
2525 && echo "en_US.ISO-8859-15 ISO-8859-15" >> /etc/locale.gen \
2626 && locale-gen \
27- && apt-get clean \
27+ && apt clean \
2828 && rm --recursive --force /var/lib/apt/lists/* /tmp/* /var/tmp/* \
2929 && useradd --uid ${GS_UID} --gid ${GS_GID} --no-create-home --no-user-group ${GS_USER} \
3030 ;
@@ -157,11 +157,11 @@ FROM docker-gs64-server as docker-gs64-rowan
157157
158158USER root
159159# Install git
160- RUN apt-get update \
161- && apt-get install --assume-yes --no-install-recommends \
160+ RUN apt update \
161+ && apt install --assume-yes --no-install-recommends \
162162 git \
163163 ssh-client \
164- && apt-get clean \
164+ && apt clean \
165165 && rm --recursive --force /var/lib/apt/lists/* /tmp/* /var/tmp/* \
166166 ;
167167
You can’t perform that action at this time.
0 commit comments