1
0
mirror of synced 2026-01-05 21:02:13 -05:00
Files
airbyte/airbyte-server/Dockerfile
2022-04-28 14:00:43 -07:00

17 lines
374 B
Docker

ARG JDK_VERSION=17.0.1
FROM openjdk:${JDK_VERSION}-slim AS server
EXPOSE 8000
ARG VERSION=0.36.5-alpha
ENV APPLICATION airbyte-server
ENV VERSION ${VERSION}
WORKDIR /app
ADD bin/${APPLICATION}-${VERSION}.tar /app
# wait for upstream dependencies to become available before starting server
ENTRYPOINT ["/bin/bash", "-c", "${APPLICATION}-${VERSION}/bin/${APPLICATION}"]