diff options
author | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2019-05-26 22:26:45 +0200 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-11-19 15:33:00 -0600 |
commit | 4e54fe879c52997821fd3dd12a28accbe2132b3f (patch) | |
tree | ada505f3388f86fe9be47335e0b7d950e7b8cf8c /Dockerfile | |
parent | a6888a2d9d3ef9d2634363b388a96ce3f08ae273 (diff) |
Docker: Remove dist-upgrade (#10822)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 46631cde4..3acbc9d4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,6 @@ SHELL ["bash", "-c"] ENV NODE_VER="8.15.0" RUN echo "Etc/UTC" > /etc/localtime && \ apt update && \ - apt -y dist-upgrade && \ apt -y install wget make gcc g++ python && \ cd ~ && \ wget https://nodejs.org/download/release/v$NODE_VER/node-v$NODE_VER.tar.gz && \ @@ -80,7 +79,6 @@ ARG GID=991 RUN apt update && \ echo "Etc/UTC" > /etc/localtime && \ ln -s /opt/jemalloc/lib/* /usr/lib/ && \ - apt -y dist-upgrade && \ apt install -y whois wget && \ addgroup --gid $GID mastodon && \ useradd -m -u $UID -g $GID -d /opt/mastodon mastodon && \ |