1
0
mirror of synced 2026-01-13 18:02:36 -05:00
Files
airbyte/airbyte-server/Dockerfile
2023-01-23 23:22:45 -08:00

18 lines
424 B
Docker

ARG JDK_IMAGE=airbyte/airbyte-base-java-image:1.0
FROM ${JDK_IMAGE} AS server
EXPOSE 8000
ARG VERSION=0.40.29
ENV APPLICATION airbyte-server
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}"]