Pin pyarrow dependency to version 14.0.2 in Dockerfile. #17
This file contains hidden or 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
| name: Docker Image CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Login to Public ECR | |
| id: login-public-ecr | |
| uses: docker/login-action@v1 | |
| with: | |
| registry: public.ecr.aws | |
| username: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
| password: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | |
| env: | |
| AWS_REGION: us-east-1 | |
| - name: Build the Docker image | |
| run: | | |
| docker build . --file Dockerfile --tag das-s3-fanout-processor | |
| docker tag das-s3-fanout-processor public.ecr.aws/pixelvide/das/s3-fanout-processor/debug:${GITHUB_SHA} | |
| docker push public.ecr.aws/pixelvide/das/s3-fanout-processor/debug:${GITHUB_SHA} |