From a547d0052ff12ce6c47bffab3e9701e0a4727903 Mon Sep 17 00:00:00 2001 From: James Pace Date: Sat, 1 Apr 2023 00:16:30 -0400 Subject: [PATCH] Add Dockerfile for kanboard. --- infra-cluster/kanboard/images/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 infra-cluster/kanboard/images/Dockerfile diff --git a/infra-cluster/kanboard/images/Dockerfile b/infra-cluster/kanboard/images/Dockerfile new file mode 100644 index 0000000..889b8ac --- /dev/null +++ b/infra-cluster/kanboard/images/Dockerfile @@ -0,0 +1,7 @@ +FROM docker.io/library/debian:bullseye as builder + +RUN apt update -y && apt install -y git +RUN git clone https://github.com/kanboard/plugin-oauth2.git + +FROM docker.io/kanboard/kanboard:latest +COPY --from=builder /plugin-oauth2 /var/www/app/plugins/OAuth2