1
0
mirror of synced 2026-01-02 21:02:43 -05:00
Files
airbyte/airbyte-server/Dockerfile
2021-11-02 14:15:11 -07:00

14 lines
347 B
Docker

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