initial bundle

This commit is contained in:
Olaf Bohlen
2023-01-01 21:42:31 +01:00
commit d99f23906b
7 changed files with 399 additions and 0 deletions

11
Containerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM docker.eenfach.de/olbohlen/kshbase:latest
LABEL author="Olaf Bohlen <olbohlen@eenfach.de>"
COPY receipt-processor.ksh /usr/local/bin/receipt-processor.ksh
RUN chmod 755 /usr/local/bin/receipt-processor.ksh && \
useradd cookie && \
dnf install -y jq curl
USER cookie
ENTRYPOINT ["/usr/local/bin/receipt-processor.ksh"]