1
0
mirror of synced 2026-01-15 06:06:30 -05:00
Files
airbyte/airbyte-integrations/bases/base-java/Dockerfile
George Claireaux e88db7605a Remove legacy sentry code from java connectors (#14414)
* remove a bunch of things

* removed the rest

* formatting
2022-07-20 12:30:46 +01:00

21 lines
604 B
Docker

ARG JDK_VERSION=17.0.1
FROM openjdk:${JDK_VERSION}-slim
COPY --from=airbyte/integration-base:dev /airbyte /airbyte
WORKDIR /airbyte
COPY javabase.sh .
# airbyte base commands
ENV AIRBYTE_SPEC_CMD "/airbyte/javabase.sh --spec"
ENV AIRBYTE_CHECK_CMD "/airbyte/javabase.sh --check"
ENV AIRBYTE_DISCOVER_CMD "/airbyte/javabase.sh --discover"
ENV AIRBYTE_READ_CMD "/airbyte/javabase.sh --read"
ENV AIRBYTE_WRITE_CMD "/airbyte/javabase.sh --write"
ENV AIRBYTE_ENTRYPOINT "/airbyte/base.sh"
ENTRYPOINT ["/airbyte/base.sh"]
LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.name=airbyte/integration-base-java