1
0
mirror of synced 2026-01-03 15:04:01 -05:00
Files
airbyte/airbyte-cron/Dockerfile
2022-11-01 19:35:23 -07: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.18
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}"]