2022-09-04 21:21:33 +00:00
|
|
|
FROM alpine:latest as builder
|
|
|
|
|
|
|
|
ARG BW_VERSION=2022.8.0
|
|
|
|
|
|
|
|
RUN apk add wget unzip
|
|
|
|
|
|
|
|
RUN cd /tmp && wget https://github.com/bitwarden/clients/releases/download/cli-v${BW_VERSION}/bw-linux-${BW_VERSION}.zip && \
|
|
|
|
unzip /tmp/bw-linux-${BW_VERSION}.zip
|
|
|
|
|
|
|
|
FROM ubuntu:jammy
|
|
|
|
|
|
|
|
COPY --from=builder /tmp/bw /usr/local/bin/bw
|
|
|
|
COPY requirements.txt requirements.txt
|
|
|
|
|
|
|
|
RUN set -eux; \
|
|
|
|
groupadd -r bw-operator ; \
|
|
|
|
useradd -r -g bw-operator -s /sbin/nologin bw-operator; \
|
|
|
|
mkdir -p /home/bw-operator; \
|
|
|
|
chown -R bw-operator /home/bw-operator; \
|
|
|
|
chmod +x /usr/local/bin/bw; \
|
|
|
|
apt-get update; \
|
|
|
|
apt-get install -y --no-install-recommends python3 python3-pip; \
|
2022-09-04 21:29:28 +00:00
|
|
|
apt-get clean;
|
2022-09-04 21:21:33 +00:00
|
|
|
|
2022-09-04 21:24:14 +00:00
|
|
|
COPY --chown=bw-operator:bw-operator bitwarden-crd-operator.py /home/bw-operator/bitwarden-crd-operator.py
|
2022-09-04 21:21:33 +00:00
|
|
|
|
|
|
|
USER bw-operator
|
|
|
|
|
2022-09-04 21:29:28 +00:00
|
|
|
RUN set -eux; \
|
2022-09-14 20:58:48 +00:00
|
|
|
pip install -r requirements.txt --no-warn-script-location
|
2022-09-04 21:29:28 +00:00
|
|
|
|
2022-09-10 12:55:53 +00:00
|
|
|
ENTRYPOINT [ "/home/bw-operator/.local/bin/kopf", "run", "--all-namespaces", "--liveness=http://0.0.0.0:8080/healthz" ]
|
2022-09-09 21:00:33 +00:00
|
|
|
CMD [ "/home/bw-operator/bitwarden-crd-operator.py" ]
|