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 e9c86d9 commit 5b0df56
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
PASSWORD: ${{secrets.PASSWORD}}
run: |
docker login -u ${USERNAME} -p ${PASSWORD}
for file in ${ALL_CHANGED_FILES}; do
for file in `echo ${ALL_CHANGED_FILES}|tr " " "\n" | sort |uniq`; do
CHANGEFOLDER=$(echo ${file}|awk -F"/" '{print $1}')
cd ${CHANGEFOLDER}
VERSION=$(grep -w VERSION Dockerfile |awk -F":" '{print $2}')
Expand Down
1 change: 1 addition & 0 deletions glibc_jdk8/Dockerfile → jre/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM pilgrima/alpine-glibc:latest
# VERSION:v1.8.0_401
MAINTAINER pilgrima
ADD jre1.8.tar.gz /usr/java/jdk/
ENV JAVA_HOME /usr/java/jdk/jre1.8.0_401
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 5b0df56

Please sign in to comment.