New PACKAGES logic

This commit is contained in:
Alexandre
2021-12-07 20:32:38 +01:00
parent d0f5c8653b
commit ee196a0279
75 changed files with 981 additions and 363 deletions

View File

@@ -24,15 +24,15 @@ COPY --from=vaultwarden /web-vault /opt/web-vault
# add Nginx
# hadolint ignore=DL3009
ENV PACKAGES="libmariadb-dev-compat \
libpq5 \
nginx \
sqlite3"
RUN \
apt-get clean \
&& apt-get update \
\
&& apt-get install -y --no-install-recommends \
libmariadb-dev-compat \
libpq5 \
nginx \
sqlite3 \
&& apt-get install -y --no-install-recommends ${PACKAGES} \
&& apt-get clean \
&& rm -f -r \
/etc/nginx \