Skip to content

Pin pyarrow dependency to version 14.0.2 in Dockerfile. #17

Pin pyarrow dependency to version 14.0.2 in Dockerfile.

Pin pyarrow dependency to version 14.0.2 in Dockerfile. #17

Workflow file for this run

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}