22 lines
515 B
Docker
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
|