Alexis Pentori e1257ad5ff
source-crypto-market-extractor: init new connector
Signed-off-by: Alexis Pentori <alexis@status.im>
2024-01-12 19:16:53 +01:00

9 lines
317 B
Docker

FROM airbyte/python-connector-base:1.1.0
COPY . ./airbyte/integration_code
RUN pip install ./airbyte/integration_code
# The entrypoint and default env vars are already set in the base image
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]