Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds ARG to adjust local base image (#339)
## Overview The `Dockerfile` hardcodes `quay.io/pypa/manylinux2014_x86_64`, with this PR it can now be adjusted: ``` # macos development docker image build --build-arg="MANYLINUX_BASE_IMAGE=quay.io/pypa/manylinux2014_aarch64" \ -t fasttask-runner:0.0.11 . docker image build --build-arg="MANYLINUX_BASE_IMAGE=quay.io/pypa/manylinux2014_x86_64" \ -t fasttask-runner:0.0.11 . ``` ## Upstream Changes Should this change be upstreamed to OSS (flyteorg/flyte)? If not, please uncheck this box, which is used for auditing. Note, it is the responsibility of each developer to actually upstream their changes. See [this guide](https://unionai.atlassian.net/wiki/spaces/ENG/pages/447610883/Flyte+-+Union+Cloud+Development+Runbook/#When-are-versions-updated%3F). - [ ] To be upstreamed to OSS
- Loading branch information