diff --git a/.github/workflows/docker-publish.yaml b/.github/workflows/docker-publish.yaml index 090da7a..a351f80 100644 --- a/.github/workflows/docker-publish.yaml +++ b/.github/workflows/docker-publish.yaml @@ -46,5 +46,5 @@ jobs: platforms: linux/amd64, linux/arm64 push: ${{ github.event_name != 'pull_request' }} # tags: ${{ steps.metadata.outputs.tags }} - tags: devbyteops/aliyun-cli:0.0.1 + tags: devbyteops/aliyun-cli:0.0.2 labels: ${{ steps.metadata.outputs.labels }} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index c919e4c..c1d4203 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM alpine:3.19.1 -ARG ALIYUN_VERSION=3.0.206 +FROM alpine:3.20.2 +ARG ALIYUN_VERSION=3.0.216 RUN apk update && apk add --no-cache bash RUN wget https://aliyuncli.alicdn.com/aliyun-cli-linux-${ALIYUN_VERSION}-amd64.tgz && \ tar -xvzf aliyun-cli-linux-${ALIYUN_VERSION}-amd64.tgz && \