-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDockerfile
More file actions
25 lines (18 loc) · 838 Bytes
/
Dockerfile
File metadata and controls
25 lines (18 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#--------------------------------------
# Ubuntu flavor
#--------------------------------------
ARG DISTRO=resolute
#--------------------------------------
# base images
#--------------------------------------
FROM ghcr.io/containerbase/ubuntu:20.04@sha256:8feb4d8ca5354def3d8fce243717141ce31e2c428701f6682bd2fafe15388214 AS build-focal
FROM ghcr.io/containerbase/ubuntu:22.04@sha256:13861e4d4047fbbe1fc1737d690dffe8d31c4524c8f203beb0c9bb1ddda35d3c AS build-jammy
FROM ghcr.io/containerbase/ubuntu:26.04@sha256:f3d28607ddd78734bb7f71f117f3c6706c666b8b76cbff7c9ff6e5718d46ff64 AS build-resolute
#--------------------------------------
# builder images
#--------------------------------------
FROM build-${DISTRO} AS builder
ARG APT_PROXY
ENTRYPOINT [ "dumb-init", "--", "builder.sh" ]
COPY bin /usr/local/bin
RUN install-builder.sh