1
0
mirror of synced 2025-12-29 09:03:46 -05:00
Files
airbyte/airbyte-integrations/connectors/source-file/Dockerfile.test
2021-01-27 16:49:33 -08:00

22 lines
515 B
Docker

FROM airbyte/base-python-test:dev
RUN apt-get update && rm -rf /var/lib/apt/lists/*
ENV CODE_PATH="integration_tests"
ENV AIRBYTE_TEST_MODULE="integration_tests"
ENV AIRBYTE_TEST_PATH="SourceFileStandardTest"
ENV AIRBYTE_TEST_CASE=true
LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.name=airbyte/source-file-standard-test
WORKDIR /airbyte/integration_code
COPY source_file source_file
COPY $CODE_PATH $CODE_PATH
COPY source_file/*.json $CODE_PATH
COPY setup.py ./
RUN pip install ".[tests]"
WORKDIR /airbyte