Skip to content

Commit

Permalink
rename dockerfile root
Browse files Browse the repository at this point in the history
  • Loading branch information
chaudharysaket committed May 16, 2024
1 parent 48640e3 commit e990503
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/publish-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: |
pwd
ls
cd nodejs
./publish-ecr-images.sh build-publish-nodejs${{ matrix.node-version }}x-ecr-image
- name: Upload Unit Test Coverage
Expand Down
File renamed without changes.
5 changes: 3 additions & 2 deletions libBuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -278,18 +278,19 @@ function publish_docker_ecr {
repository="q6k3q1g1"

# copy dockerfile
cp ../Dockerfile .
ls
cp ../Dockerfile.ecrImage .

echo "Running : aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws/${repository}"
aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws/${repository}

echo "docker build -t layer-nr-image-${language_flag}-${version_flag}${arch_flag}:latest \
-f Dockerfile.ecrImage \
--build-arg layer_zip=${layer_archive} \
--build-arg file_without_dist=${file_without_dist} \
."

docker build -t layer-nr-image-${language_flag}-${version_flag}${arch_flag}:latest \
-f Dockerfile.ecrImage \
--build-arg layer_zip=${layer_archive} \
--build-arg file_without_dist=${file_without_dist} \
.
Expand Down

0 comments on commit e990503

Please sign in to comment.