Skip to content

Commit d81b749

Browse files
committed
Merge remote-tracking branch 'upstream/master' into readme
2 parents 8e8d2fb + f3636c0 commit d81b749

13 files changed

Lines changed: 58 additions & 9 deletions

File tree

.github/workflows/apps.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ jobs:
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: .

.github/workflows/base.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
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: .

.github/workflows/java.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ jobs:
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: .

.github/workflows/mono.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ jobs:
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: .

.github/workflows/python.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ jobs:
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: .

.github/workflows/wine.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ jobs:
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: .
@@ -98,6 +100,8 @@ jobs:
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: .

apps/mongodb/Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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/*

apps/postgresql/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PostgreSQL image for AMP containers
1+
# PostgreSQL dependencies image for AMP containers
22
# cubecoders/ampbase:postgresql
33

44
FROM cubecoders/ampbase:debian
@@ -11,6 +11,8 @@ ENV DEBIAN_FRONTEND="noninteractive"
1111
RUN 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/*

apps/sinusbot/Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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/*

apps/uptime-kuma-2/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

0 commit comments

Comments
 (0)