Files
truecharts/.containers/base/ubuntu/Dockerfile
T
Kjeld Schouten-LebbingandGitHub 99bb72cb13 Use third-party containers as source (#367)
* try fetching ubuntu container from KAH

* test using github token

* oops

* fix container build process for PR's

* v

* whoopsies

* link Alpine to KAH

* try porting bazarr

* oops

* improve bazarr labeling

* need version before setting dockerfile

* Fix platform (as SCALE doesn't run on ARM officially)

* Cleanup all Apps related to KAH

* only update base if base exists and do so on an per-app basis
2021-04-16 14:21:18 +02:00

27 lines
445 B
Docker

ARG VERSION
FROM ghcr.io/k8s-at-home/ubuntu:v${VERSION}
ARG TARGETPLATFORM
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
USER root
RUN \
usermod -l apps kah \
&& \
groupmod -n apps kah \
&& chown -R apps:apps /config
WORKDIR /app
USER apps
VOLUME [ "/config" ]
ENTRYPOINT [ "/usr/bin/tini", "--" ]
LABEL "maintainer"="TrueCharts <info@truecharts.org>"
LABEL "org.opencontainers.image.source"="https://github.com/truecharts/apps"