Add Dockerfile for kanboard.

This commit is contained in:
James Pace 2023-04-01 00:16:30 -04:00
parent 7a9b158339
commit a547d0052f
1 changed files with 7 additions and 0 deletions

View File

@ -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