Browse Source

Do not use apk cache and upgrade (#9966)

pull/4/head
J0WI 5 years ago
committed by Eugen Rochko
parent
commit
26c1aba658
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      Dockerfile

+ 3
- 4
Dockerfile View File

@ -24,8 +24,7 @@ COPY --from=node /usr/local/lib/node_modules /usr/local/lib/node_modules
COPY --from=node /usr/local/bin/npm /usr/local/bin/npm
COPY --from=node /opt/yarn-* /opt/yarn
RUN apk -U upgrade \
&& apk add -t build-dependencies \
RUN apk add --no-cache -t build-dependencies \
build-base \
icu-dev \
libidn-dev \
@ -36,7 +35,7 @@ RUN apk -U upgrade \
postgresql-dev \
protobuf-dev \
python \
&& apk add \
&& apk add --no-cache \
ca-certificates \
ffmpeg \
file \
@ -64,7 +63,7 @@ RUN apk -U upgrade \
&& make install \
&& libtool --finish /usr/local/lib \
&& cd /mastodon \
&& rm -rf /tmp/* /var/cache/apk/*
&& rm -rf /tmp/*
COPY Gemfile Gemfile.lock package.json yarn.lock .yarnclean /mastodon/

Loading…
Cancel
Save