Skip to content

Commit 0b30dd3

Browse files
committed
Remove target for d* #2213
1 parent ae73d67 commit 0b30dd3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+252
-146
lines changed

tools/dagger/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/dasel/Dockerfile.template

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
58

69
ARG name
710
ARG version

tools/datree/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/dbui/Dockerfile.template

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
58

69
ARG name
710
ARG version

tools/ddosify/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/delta/Dockerfile.template

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
3+
FROM ghcr.io/uniget-org/tools/rust:latest AS rust
44

5-
FROM ghcr.io/uniget-org/tools/rust:${ref} AS rust
6-
7-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
5+
FROM nicholasdille/ubuntu:22.04 AS prepare
6+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
7+
/etc/profile.d/ \
8+
/etc/profile.d/
9+
SHELL [ "bash", "-clo", "errexit" ]
810
COPY --from=rust / /
911
ARG DEBIAN_FRONTEND=noninteractive
1012
RUN <<EOF

tools/dependency-check/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/depot/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/devbox/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/devcontainer/Dockerfile.template

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
3+
FROM ghcr.io/uniget-org/tools/python:latest AS python
4+
FROM ghcr.io/uniget-org/tools/nodejs:latest AS nodejs
5+
FROM ghcr.io/uniget-org/tools/npm:latest AS npm
6+
FROM ghcr.io/uniget-org/tools/make:latest AS make
47

5-
FROM ghcr.io/uniget-org/tools/python:${ref} AS python
6-
FROM ghcr.io/uniget-org/tools/nodejs:${ref} AS nodejs
7-
FROM ghcr.io/uniget-org/tools/npm:${ref} AS npm
8-
FROM ghcr.io/uniget-org/tools/make:${ref} AS make
9-
10-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
8+
FROM nicholasdille/ubuntu:22.04 AS prepare
9+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
10+
/etc/profile.d/ \
11+
/etc/profile.d/
12+
SHELL [ "bash", "-clo", "errexit" ]
1113
ARG name
1214
ARG version
1315
COPY --link --from=python / /

tools/devpod/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/diffoci/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/dinit/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/direnv/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/distrobox/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/diun/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/dive/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/dnsx/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/docker-base/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/docker-compose-switch/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/docker-compose-v1/Dockerfile.template

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM --platform=amd64 ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM --platform=amd64 ghcr.io/uniget-org/tools/base:latest AS prepare
64
ARG name
75
ARG version
86
COPY docker-compose-cli-plugin ${prefix}${target}/libexec/docker/cli-plugins/docker-compose

tools/docker-compose/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/docker-credential-acr-env/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

tools/docker-credential-ecr-login/Dockerfile.template

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
58

69
ARG name
710
ARG version

tools/docker-credential-gcr/Dockerfile.template

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
58

69
ARG name
710
ARG version

tools/docker-credential-helpers/Dockerfile.template

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
58

69
ARG name
710
ARG version

tools/docker-credential-magic/Dockerfile.template

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
58

69
ARG name
710
ARG version

tools/docker-gen/Dockerfile.template

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
#syntax=docker/dockerfile:1.6.0
22

3-
ARG ref=main
4-
5-
FROM ghcr.io/uniget-org/tools/base:${ref} AS prepare
3+
FROM nicholasdille/ubuntu:22.04 AS prepare
4+
COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
5+
/etc/profile.d/ \
6+
/etc/profile.d/
7+
SHELL [ "bash", "-clo", "errexit" ]
68
ARG name
79
ARG version
810
RUN <<EOF

0 commit comments

Comments
 (0)