Skip to content

Commit

Permalink
Merge pull request #16 from bitofsky/2024-07
Browse files Browse the repository at this point in the history
chore: Install amazon-ecr-credential-helper in Dockerfile
  • Loading branch information
bitofsky authored Jul 21, 2024
2 parents 5e9b2c2 + 91e312a commit 9eca490
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,9 @@ COPY --from=golang:1.22.0 /usr/local/go/ /usr/local/go/
ENV GOPATH /go
ENV PATH $GOPATH/bin:/usr/local/go/bin:/usr/bin:${PATH}

# install amazon-ecr-credential-helper
RUN curl -L "https://amazon-ecr-credential-helper-releases.s3.us-east-2.amazonaws.com/0.8.0/linux-amd64/docker-credential-ecr-login" -o "/usr/bin/docker-credential-ecr-login" \
&& chmod a+x /usr/bin/docker-credential-ecr-login

RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ Below is a list of the essential packages and tools installed in this Docker ima
### Programming Languages and CLI Tools

- **AWS CLI**: Version 2.15.39
- **amazon-ecr-credential-helper**: Version 0.8.0
- **pnpm**: Version 9.0.2
- **turbo**: Version 1.13.2
- **tsx**: Version 4.7.2
Expand Down

0 comments on commit 9eca490

Please sign in to comment.