mirror of
https://github.com/lldap/lldap.git
synced 2024-11-28 09:11:39 +00:00
Dockerfile: add jq/jo/curl, required by bootstrap.sh
This commit is contained in:
parent
56eee6908e
commit
11d766b2ba
2 changed files with 2 additions and 2 deletions
2
.github/workflows/Dockerfile.ci.alpine-base
vendored
2
.github/workflows/Dockerfile.ci.alpine-base
vendored
|
@ -64,7 +64,7 @@ WORKDIR /app
|
||||||
ENV UID=1000
|
ENV UID=1000
|
||||||
ENV GID=1000
|
ENV GID=1000
|
||||||
ENV USER=lldap
|
ENV USER=lldap
|
||||||
RUN apk add --no-cache tini ca-certificates bash tzdata && \
|
RUN apk add --no-cache tini ca-certificates bash tzdata jq curl jo && \
|
||||||
addgroup -g $GID $USER && \
|
addgroup -g $GID $USER && \
|
||||||
adduser \
|
adduser \
|
||||||
--disabled-password \
|
--disabled-password \
|
||||||
|
|
2
.github/workflows/Dockerfile.ci.debian-base
vendored
2
.github/workflows/Dockerfile.ci.debian-base
vendored
|
@ -65,7 +65,7 @@ ENV UID=1000
|
||||||
ENV GID=1000
|
ENV GID=1000
|
||||||
ENV USER=lldap
|
ENV USER=lldap
|
||||||
RUN apt update && \
|
RUN apt update && \
|
||||||
apt install -y --no-install-recommends tini openssl ca-certificates tzdata && \
|
apt install -y --no-install-recommends tini openssl ca-certificates tzdata jq curl jo && \
|
||||||
apt clean && \
|
apt clean && \
|
||||||
rm -rf /var/lib/apt/lists/* && \
|
rm -rf /var/lib/apt/lists/* && \
|
||||||
groupadd -g $GID $USER && useradd --system -m -g $USER --uid $UID $USER && \
|
groupadd -g $GID $USER && useradd --system -m -g $USER --uid $UID $USER && \
|
||||||
|
|
Loading…
Reference in a new issue