Skip to content

Commit

Permalink
Merge pull request #234 from ContinuumIO/fix_alpine_action
Browse files Browse the repository at this point in the history
Use tags as calculated by the docker metadata action for alpine
  • Loading branch information
dbast authored Jul 23, 2021
2 parents 36c61ab + 7341942 commit dba469f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/miniconda_alpine_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ jobs:
context: ./miniconda3/alpine
builder: ${{ steps.buildx.outputs.name }}
file: ./miniconda3/alpine/Dockerfile
tags: continuumio/miniconda3/alpine:latest
tags: ${{ steps.meta.outputs.tags }}
push: ${{ github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags') }}
2 changes: 1 addition & 1 deletion miniconda3/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ ARG CONDA_VERSION=py39_4.10.3
ARG SHA256SUM=1ea2f885b4dbc3098662845560bc64271eb17085387a70c2ba3f29fff6f8d52f

# hadolint ignore=DL3018
RUN apk add -q --no-cache bash psmisc && \
RUN apk add -q --no-cache bash procps && \
wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-${CONDA_VERSION}-Linux-x86_64.sh -O miniconda.sh && \
echo "${SHA256SUM} miniconda.sh" > miniconda.sha256 && \
if ! sha256sum -cs miniconda.sha256; then exit 1; fi && \
Expand Down

0 comments on commit dba469f

Please sign in to comment.