remove add curl to buil deps

This commit is contained in:
Robert Kaussow 2020-01-18 15:33:47 +01:00
parent c825bc5530
commit 5af569161e
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ ARG VAULT_TARBALL=https://github.com/dani-garcia/bw_web_builds/releases/download
RUN addgroup -g 101 -S app && \
adduser -S -D -H -u 101 -h /app -s /sbin/nologin -G app -g app app && \
apk --update add --virtual .build-deps tar curl && \
apk --update add openssl curl postgresql-libs ca-certificates && \
apk --update add openssl postgresql-libs ca-certificates && \
curl -SsL -o /usr/local/bin/gomplate https://github.com/hairyhenderson/gomplate/releases/download/v3.5.0/gomplate_linux-amd64-slim && \
chmod 755 /usr/local/bin/gomplate && \
mkdir -p /app/web-vault /app/data && \