1
0
mirror of synced 2026-01-16 18:06:29 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/Dockerfile
jordan-glitch 98e5953d8d 🐛 Source Gitlab: allow container_expiration_policy to be nullable + fix null projects list (#11907)
* allow nullable container_expiration_policy

* Update Dockerfile

* Update source_definitions.yaml

* Update source_specs.yaml

* fix unspecified projects

* add doc update

Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
2022-05-02 18:44:21 -03:00

18 lines
474 B
Docker

FROM python:3.9-slim
# Bash is installed for more convenient debugging.
RUN apt-get update && apt-get install -y bash && rm -rf /var/lib/apt/lists/*
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
WORKDIR /airbyte/integration_code
COPY source_gitlab ./source_gitlab
COPY main.py ./
COPY setup.py ./
RUN pip install .
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
LABEL io.airbyte.version=0.1.5
LABEL io.airbyte.name=airbyte/source-gitlab