diff options
Diffstat (limited to '.github/actions/release/Dockerfile')
-rw-r--r-- | .github/actions/release/Dockerfile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/actions/release/Dockerfile b/.github/actions/release/Dockerfile new file mode 100644 index 000000000..af27016e1 --- /dev/null +++ b/.github/actions/release/Dockerfile @@ -0,0 +1,11 @@ +FROM alpine:latest + +RUN apk add --no-cache \ + bash \ + ca-certificates \ + curl \ + jq + +COPY upload /usr/bin/upload + +ENTRYPOINT ["/usr/bin/upload"] |