Skip to content

Commit 93807fe

Browse files
committed
hmmmmmm
1 parent ce21284 commit 93807fe

6 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/bun.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ jobs:
5252
- name: Build and push
5353
uses: docker/build-push-action@v6
5454
with:
55-
context: ./bun/${{ matrix.tag }}
55+
context: ./bun
56+
dockerfile: ./${{ matrix.tag }}/Dockerfile
5657
platforms: linux/amd64,linux/arm64
5758
push: true
5859
tags: |

bun/canary/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ USER container
4242
ENV USER=container HOME=/home/container
4343
WORKDIR /home/container
4444

45-
COPY --chmod=755 --chown=root:root ../entrypoint.sh /entrypoint.sh
45+
COPY --chmod=755 --chown=root:root entrypoint.sh /entrypoint.sh
4646

4747
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
4848
CMD test -f /proc/1/cmdline || exit 1

bun/latest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ USER container
4242
ENV USER=container HOME=/home/container
4343
WORKDIR /home/container
4444

45-
COPY --chmod=755 --chown=root:root ../entrypoint.sh /entrypoint.sh
45+
COPY --chmod=755 --chown=root:root entrypoint.sh /entrypoint.sh
4646

4747
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
4848
CMD test -f /proc/1/cmdline || exit 1

python/3.7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# SOFTWARE.
2121
#
2222

23-
FROM --platform=$TARGETOS/$TARGETARCH python:3.7-alpine3.20
23+
FROM --platform=$TARGETOS/$TARGETARCH python:3.7-slim-bookworm
2424

2525
LABEL author="Tyler Hodgkin" maintainer="tyler.h@nodebyte.co.uk"
2626

python/3.8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# SOFTWARE.
2121
#
2222

23-
FROM --platform=$TARGETOS/$TARGETARCH python:3.8-alpine3.20
23+
FROM --platform=$TARGETOS/$TARGETARCH python:3.8-slim-bookworm
2424

2525
LABEL author="Tyler Hodgkin" maintainer="tyler.h@nodebyte.co.uk"
2626

python/3.9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# SOFTWARE.
2121
#
2222

23-
FROM --platform=$TARGETOS/$TARGETARCH python:3.9-alpine3.20
23+
FROM --platform=$TARGETOS/$TARGETARCH python:3.9-slim-bookworm
2424

2525
LABEL author="Tyler Hodgkin" maintainer="tyler.h@nodebyte.co.uk"
2626

0 commit comments

Comments
 (0)