Skip to content

Commit

Permalink
123
Browse files Browse the repository at this point in the history
  • Loading branch information
yx_xuliang committed Aug 20, 2024
1 parent 61de698 commit 43b97ff
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
REPOSITOY: ${{secrets.REPOSITOY}}

USERNAME: ${{secrets.USERNAME}}
PASSWORD: ${{secrets.PASSWORD}}
run: |
Expand All @@ -41,10 +41,12 @@ jobs:
cd ${CHANGEFOLDER}
VERSION=$(grep -w VERSION Dockerfile |awk -F":" '{print $2}')
echo ${VERSION}
IMAGENAME=$(echo ${REPOSITORY}/${CHANGEFOLDER}:${VERSION})
IMAGENAME=$(echo pilgrima/${CHANGEFOLDER}:${VERSION})
echo ${IMAGENAME}
docker buildx build -t ${IMAGENAME} .
docker push ${IMAGENAME}
docekr tag $(echo pilgrima/${CHANGEFOLDER}:latest) ${IMAGENAME}
docker push $(echo pilgrima/${CHANGEFOLDER}:latest)
done
Expand Down
2 changes: 1 addition & 1 deletion alpine-glibc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:3.19.1
# VERSION:2.35-r1
# VERSION:glibc-2.35-r1
LABEL author="pilgrima" version="alpine:3.19.1 glibc:2.35-r1"
ENV GLIBC_VERSION 2.35-r1
# Download and install glibc
Expand Down

0 comments on commit 43b97ff

Please sign in to comment.