minimal docker base image to build and deploy services and applications.
Three images provided:
umputun/baseimage:buildgo-latest. For build stage, includes go compiler and linters. Alpine based.umputun/baseimage:app-latestumputun/baseimage:scratch-latestImage umputun/baseimage:buildgo-latest and ghcr.io/umputun/baseimage/buildgo:latest intends to be used in multi-stage Dockefile to build go applications and services.
CGO_ENABLED=0coverage.sh script to report coverage./script/version.sh script to make git-based versionImage umputun/baseimage:app-latest and ghcr.io/umputun/baseimage/app:lastest designed as a lightweight, ready-to-use base for various services. It adds a few things to the regular alpine image.
ENTRYPOINT /init.sh runs CMD via dumb-initapp user with uid $APP_UID (default 1001)/srv/init.sh if provided by custom containertzdata, curl, su-exec, ca-certificates and openssl pre-installedapp (uid=1001)The container can be customized in runtime by setting environment from docker's command line or as a part of docker-compose.yml
TIME_ZONE - set container's TZ, default "America/Chicago". For scratch-based TZ should be used insteadAPP_UID - UID of internal app user, default 1001FROM umputun/baseimage:buildgo as build
WORKDIR /build
ADD . /build
RUN go test -mod=vendor ./...
RUN golangci-lint run --out-format=tab --tests=false ./...
RUN \
revison=$(/script/git-rev.sh) && \
echo "revision=${revison}" && \
go build -mod=vendor -o app -ldflags "-X main.revision=$revison -s -w" .
FROM umputun/baseimage:app
COPY --from=build /build/app /srv/app
EXPOSE 8080
WORKDIR /srv
CMD ["/srv/app", "param1", "param2"]
It will make a container running "/srv/app" (with passed params) under 'app' user.
To customize both TIME_ZONE and UID - docker run -e TIME_ZONE=America/New_York -e APP_UID=2000 <image>
Image umputun/baseimage:scratch-latest (or ghcr.io/umputun/baseimage/scratch) adds a few extras to the scratch (empty) image:
/etc/passwd and /etc/groups with app user and group added (UID:1001, GID:1001)/nop program to wait forever and do nothingContainer sets user to app and working directory to /srv, no entrypoint set. In order to change time zone TZ env can be used.
The overall size of this image is about 1M only.
Content type
Image
Digest
sha256:ab245e3bb…
Size
1.3 GB
Last updated
17 days ago
docker pull umputun/baseimage:buildgo-master