1
0
mirror of synced 2026-01-17 03:06:35 -05:00
Files
airbyte/airbyte-cron/Dockerfile
2023-01-23 23:22:45 -08:00

16 lines
407 B
Docker

ARG JDK_IMAGE=airbyte/airbyte-base-java-image:1.0
FROM ${JDK_IMAGE} AS cron
ARG VERSION=0.40.29
ENV APPLICATION airbyte-cron
ENV VERSION ${VERSION}
WORKDIR /app
# This is automatically unzipped by Docker
ADD bin/${APPLICATION}-${VERSION}.tar /app
# wait for upstream dependencies to become available before starting server
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-${VERSION}/bin/${APPLICATION}"]