-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from bnb-chain/develop
release: prepare release for v0.0.5
- Loading branch information
Showing
11 changed files
with
171 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Docker | ||
|
||
on: | ||
push: | ||
# Publish `v1.2.3` tags as releases. | ||
tags: | ||
- v* | ||
|
||
env: | ||
IMAGE_NAME: ghcr.io/${{ github.repository }} | ||
IMAGE_SOURCE: https://github.com/${{ github.repository }} | ||
|
||
jobs: | ||
# Push image to GitHub Packages. | ||
push: | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'push' | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Build image | ||
run: | | ||
docker build . \ | ||
--label "org.opencontainers.image.source=${IMAGE_SOURCE}" \ | ||
--label "org.opencontainers.image.revision=$(git rev-parse HEAD)" \ | ||
--label "org.opencontainers.image.version=$(git describe --tags --abbrev=0)" \ | ||
--label "org.opencontainers.image.licenses=AGPL-3.0" \ | ||
-f ./Dockerfile -t "${IMAGE_NAME}" | ||
docker build . \ | ||
--label "org.opencontainers.image.source=${IMAGE_SOURCE}" \ | ||
--label "org.opencontainers.image.revision=$(git rev-parse HEAD)" \ | ||
--label "org.opencontainers.image.version=$(git describe --tags --abbrev=0)" \ | ||
--label "org.opencontainers.image.licenses=AGPL-3.0" \ | ||
-f ./Dockerfile.distroless -t "${IMAGE_NAME}:distroless" | ||
- name: Login to GHCR | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Push image | ||
run: | | ||
# Strip git ref prefix from version | ||
VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') | ||
# Strip "v" prefix from tag name | ||
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') | ||
# Use Docker `latest` tag convention | ||
[ "$VERSION" == "master" ] && VERSION=latest | ||
echo IMAGE_NAME=$IMAGE_NAME | ||
echo VERSION=$VERSION | ||
docker tag $IMAGE_NAME $IMAGE_NAME:$VERSION | ||
docker tag $IMAGE_NAME $IMAGE_NAME:latest | ||
docker tag ${IMAGE_NAME}:distroless $IMAGE_NAME:$VERSION-distroless | ||
docker push $IMAGE_NAME:$VERSION | ||
docker push $IMAGE_NAME:latest | ||
docker push $IMAGE_NAME:$VERSION-distroless | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
FROM balenalib/amd64-debian-golang:latest as builder | ||
|
||
# Set up dependencies | ||
ENV PACKAGES libc6-dev make git bash build-essential curl | ||
|
||
# Install minimum necessary dependencies, remove packages | ||
RUN apt-get -y update && apt-get -y install $PACKAGES | ||
|
||
# Set working directory for the build | ||
WORKDIR /opt/app | ||
|
||
# Add source files | ||
COPY . . | ||
|
||
RUN make build | ||
|
||
FROM gcr.io/distroless/cc-debian11:latest | ||
|
||
ENV GREENFIELD_CHALLENGER_HOME /opt/app | ||
|
||
ENV CONFIG_FILE_PATH $GREENFIELD_CHALLENGER_HOME/config/config.json | ||
ENV CONFIG_TYPE "local" | ||
ENV PRIVATE_KEY "" | ||
ENV BLS_PRIVATE_KEY "" | ||
ENV DB_PASS "" | ||
# You need to specify aws s3 config if you want to load config from s3 | ||
ENV AWS_REGION "" | ||
ENV AWS_SECRET_KEY "" | ||
|
||
|
||
VOLUME [ $GREENFIELD_CHALLENGER_HOME ] | ||
|
||
ENV WORKDIR=/app | ||
WORKDIR ${WORKDIR} | ||
COPY --from=builder /opt/app/build/greenfield-challenger ${WORKDIR} | ||
|
||
|
||
# Run the app | ||
ENTRYPOINT ["/app/greenfield-challenger"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.