aboutsummaryrefslogtreecommitdiffstats
path: root/.github/actions/release/Dockerfile
blob: af27016e1a705600bf6f2f394999fe0c026a20c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
FROM alpine:latest

RUN	apk add --no-cache \
  bash \
  ca-certificates \
  curl \
  jq

COPY upload /usr/bin/upload

ENTRYPOINT ["/usr/bin/upload"]