1
0
mirror of synced 2026-01-06 15:03:36 -05:00

🐛 CI templates: update scaffold examples (#5551)

Co-authored-by: Maksym Pavlenok <maksym.pavlenok@globallogic.com>
This commit is contained in:
Maksym Pavlenok
2021-08-20 22:08:18 +03:00
committed by GitHub
parent 7225187fa1
commit 10da72d178
3 changed files with 69 additions and 18 deletions

View File

@@ -1,13 +1,30 @@
FROM python:3.7-slim
FROM python:3.7.11-alpine3.14 as base
# build and load all requirements
FROM base as builder
WORKDIR /airbyte/integration_code
# upgrade pip to the latest version
RUN apk --no-cache upgrade \
&& pip install --upgrade pip
COPY setup.py ./
# install necessary packages to a temporary folder
RUN pip install --prefix=/install .
# build a clean environment
FROM base
WORKDIR /airbyte/integration_code
# copy all loaded and built libraries to a pure basic image
COPY --from=builder /install /usr/local
# Bash is installed for more convenient debugging.
RUN apt-get update && apt-get install -y bash && rm -rf /var/lib/apt/lists/*
RUN apk --no-cache add bash
WORKDIR /airbyte/integration_code
COPY source_scaffold_source_python ./source_scaffold_source_python
# copy payload code only
COPY main.py ./
COPY setup.py ./
RUN pip install .
COPY source_scaffold_source_python ./source_scaffold_source_python
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]