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