File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9191 username : ${{ vars.DOCKERHUB_USERNAME }}
9292 password : ${{ secrets.DOCKERHUB_TOKEN }}
9393
94+ - run : docker buildx prune -af
95+
9496 - uses : docker/build-push-action@v6
9597 with :
9698 context : .
Original file line number Diff line number Diff line change 4040 username : ${{ vars.DOCKERHUB_USERNAME }}
4141 password : ${{ secrets.DOCKERHUB_TOKEN }}
4242
43+ - run : docker buildx prune -af
44+
4345 - uses : docker/build-push-action@v6
4446 with :
4547 context : .
Original file line number Diff line number Diff line change 6262 username : ${{ vars.DOCKERHUB_USERNAME }}
6363 password : ${{ secrets.DOCKERHUB_TOKEN }}
6464
65+ - run : docker buildx prune -af
66+
6567 - uses : docker/build-push-action@v6
6668 with :
6769 context : .
Original file line number Diff line number Diff line change 6262 username : ${{ vars.DOCKERHUB_USERNAME }}
6363 password : ${{ secrets.DOCKERHUB_TOKEN }}
6464
65+ - run : docker buildx prune -af
66+
6567 - uses : docker/build-push-action@v6
6668 with :
6769 context : .
Original file line number Diff line number Diff line change 6868 username : ${{ vars.DOCKERHUB_USERNAME }}
6969 password : ${{ secrets.DOCKERHUB_TOKEN }}
7070
71+ - run : docker buildx prune -af
72+
7173 - uses : docker/build-push-action@v6
7274 with :
7375 context : .
Original file line number Diff line number Diff line change 6161 username : ${{ vars.DOCKERHUB_USERNAME }}
6262 password : ${{ secrets.DOCKERHUB_TOKEN }}
6363
64+ - run : docker buildx prune -af
65+
6466 - uses : docker/build-push-action@v6
6567 with :
6668 context : .
98100 username : ${{ vars.DOCKERHUB_USERNAME }}
99101 password : ${{ secrets.DOCKERHUB_TOKEN }}
100102
103+ - run : docker buildx prune -af
104+
101105 - uses : docker/build-push-action@v6
102106 with :
103107 context : .
Original file line number Diff line number Diff line change 1+ # MongoDB dependencies image for AMP containers
2+ # cubecoders/ampbase:mongodb
3+
4+ FROM cubecoders/ampbase:debian
5+
6+ LABEL org.opencontainers.image.licenses=MIT
7+
8+ ENV DEBIAN_FRONTEND="noninteractive"
9+
10+ # Install required packages
11+ RUN set -eux; \
12+ apt-get update; \
13+ apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
14+ libcurl4t64 libgssapi-krb5-2 libldap-common libwrap0 libsasl2-2 libsasl2-modules libsasl2-modules-gssapi-mit openssl liblzma5; \
15+ apt-get clean; \
16+ rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 1- # PostgreSQL image for AMP containers
1+ # PostgreSQL dependencies image for AMP containers
22# cubecoders/ampbase:postgresql
33
44FROM cubecoders/ampbase:debian
@@ -11,6 +11,8 @@ ENV DEBIAN_FRONTEND="noninteractive"
1111RUN set -eux; \
1212 apt-get update; \
1313 apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
14- make build-essential flex bison perl libreadline-dev libicu-dev; \
14+ build-essential make tar gzip bzip2 xz-utils \
15+ flex bison perl pkg-config libreadline-dev zlib1g-dev libicu-dev \
16+ libssl-dev gettext; \
1517 apt-get clean; \
1618 rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 1+ # SinusBot dependencies image for AMP containers
2+ # cubecoders/ampbase:sinusbot
3+
4+ FROM cubecoders/ampbase:debian
5+
6+ LABEL org.opencontainers.image.licenses=MIT
7+
8+ ENV DEBIAN_FRONTEND="noninteractive"
9+
10+ # Install required packages
11+ RUN set -eux; \
12+ apt-get update; \
13+ apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
14+ x11vnc xvfb libxcursor1 ca-certificates curl bzip2 libnss3 libegl1 x11-xkb-utils libasound2t64 libpci3 libxslt1.1 libxkbcommon0 libxss1 libxcomposite1 libglib2.0-0t64 less; \
15+ apt-get clean; \
16+ rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 1- # Uptime Kuma 2 image for AMP containers
1+ # Uptime Kuma 2 dependencies image for AMP containers
22# Based on https://github.com/louislam/uptime-kuma/blob/223cde831f09a49a317bc4e5926cc8a38a6fa3f2/docker/debian-base.dockerfile
33# cubecoders/ampbase:uptime-kuma-2
44
You can’t perform that action at this time.
0 commit comments