Skip to content
This repository was archived by the owner on Mar 6, 2025. It is now read-only.

Files

Latest commit

b125210 · Jun 28, 2023

History

History
This branch is 4378 commits behind airbytehq/airbyte-platform:main.

airbyte-base-java-python-image

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 28, 2023
Jun 28, 2023

Base Docker Image for Java + Python

This Docker image provides the base for any Java-based Airbyte module that also needs to run python code. It is based on the airbyte/airbyte-base-java-image image.

Releasing

To release a new version of this base image, use the following steps:

  1. Log in to Dockerhub via the Docker CLI (docker login).
  2. Run docker buildx create --use to enable Docker buildx if you have not used it previously.
  3. Run the following to build and push a new version of this image (replace <new_version> with a new version!) :
    docker buildx build --push \
      --tag airbyte/airbyte-base-java-python-image:<new_version> \
      --platform linux/amd64,linux/arm64 .
    
    To see existing versions, view the image on Dockerhub.
  4. Update base Docker image tag to the new version in all Dockerfiles that depend on the base image:
    FROM airbyte/airbyte-base-java-python-image:<NEW VERSION>