[Dockerfile] Replace manual apk update
w/ --no-cache
This commit is contained in:
parent
0558ade6b9
commit
e2e3b955f4
1 changed files with 1 additions and 2 deletions
|
@ -5,8 +5,7 @@ EXPOSE 8080
|
|||
COPY . /src/nitter
|
||||
WORKDIR /src/nitter
|
||||
|
||||
RUN apk update \
|
||||
&& apk add libsass-dev libffi-dev openssl-dev redis \
|
||||
RUN apk --no-cache add libsass-dev libffi-dev openssl-dev redis \
|
||||
&& nimble build -y -d:release --passC:"-flto" --passL:"-flto" \
|
||||
&& strip -s nitter \
|
||||
&& nimble scss
|
||||
|
|
Loading…
Reference in a new issue