diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4d12c41..909cfc4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -44,7 +44,7 @@ jobs: uses: docker/build-push-action@v2 with: context: . - platforms: linux/amd64,linux/arm/v7 + platforms: linux/amd64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..978155c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +FROM alpine:3.23.0 + +RUN apk add --no-cache \ + --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing \ + bash \ + s5cmd + +CMD ["/bin/bash"]