1
0
mirror of synced 2026-01-01 00:02:54 -05:00
Files
airbyte/airbyte-server/Dockerfile
2022-06-21 12:46:58 -07:00

19 lines
445 B
Docker

ARG JDK_VERSION=17.0.1
ARG JDK_IMAGE=openjdk:${JDK_VERSION}-slim
FROM ${JDK_IMAGE} AS server
EXPOSE 8000
ARG VERSION=0.39.23-alpha
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}"]