1
0
mirror of synced 2025-12-20 18:39:31 -05:00
Files
airbyte/airbyte-integrations/connectors/source-mysql/integration_tests/Dockerfile
2024-11-07 19:18:07 -08:00

13 lines
363 B
Docker

# Use a base image with MySQL client
FROM python:3.9
WORKDIR /usr/src/app
# Copy the script to the container and install the requirements.
COPY seed/requirements.txt .
RUN pip install --no-cache-dir -r ./requirements.txt
COPY seed/hook.py .
# Give execution rights to the script and pre-generate all scripts.
RUN chmod +x ./hook.py
RUN python ./hook.py prepare