container: Add secretsocket, chase2fa scripts
While the original intent of the `secretsocket` script was to have `rbw` run outside the `xactfetch` container, that is only useful during development; both processes need to run in the container in Kubernetes.master
parent
0f9b3a5ac5
commit
3ff18d1042
|
@ -1,6 +1,8 @@
|
||||||
*
|
*
|
||||||
!.git
|
!.git
|
||||||
|
!chase2fa.py
|
||||||
!entrypoint.sh
|
!entrypoint.sh
|
||||||
!pinentry-stub.sh
|
!pinentry-stub.sh
|
||||||
!pyproject.toml
|
!pyproject.toml
|
||||||
|
!secretsocket.py
|
||||||
!xactfetch.py
|
!xactfetch.py
|
||||||
|
|
|
@ -27,6 +27,8 @@ RUN python3 -m pip wheel -w /wheels /src
|
||||||
FROM scratch AS mixin
|
FROM scratch AS mixin
|
||||||
|
|
||||||
COPY pinentry-stub.sh /usr/local/bin/pinentry-stub
|
COPY pinentry-stub.sh /usr/local/bin/pinentry-stub
|
||||||
|
COPY secretsocket.py /usr/local/bin/secretsocket
|
||||||
|
COPY chase2fa.py /usr/local/bin/chase2fa
|
||||||
|
|
||||||
COPY entrypoint.sh /entrypoint.sh
|
COPY entrypoint.sh /entrypoint.sh
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue