39 lines
1.5 KiB
Docker
39 lines
1.5 KiB
Docker
FROM python:3.12
|
|
|
|
LABEL maintainer="Stéphane Bidoul"
|
|
|
|
ADD https://dl.k8s.io/release/stable.txt /tmp/kubectl-version.txt
|
|
RUN curl -L \
|
|
"https://dl.k8s.io/release/$(cat /tmp/kubectl-version.txt)/bin/linux/amd64/kubectl" \
|
|
-o /usr/local/bin/kubectl \
|
|
&& chmod +x /usr/local/bin/kubectl
|
|
|
|
COPY requirements.txt /tmp/requirements.txt
|
|
RUN pip install --no-cache-dir -r /tmp/requirements.txt
|
|
|
|
ENV RUNBOAT_REPOS='[{"repo": "^oca/.*", "branch": "^15.0$", "builds": [{"image": "ghcr.io/oca/oca-ci/py3.8-odoo15.0:latest"}]}]'
|
|
ENV RUNBOAT_API_ADMIN_USER="admin"
|
|
ENV RUNBOAT_API_ADMIN_PASSWD="admin"
|
|
ENV RUNBOAT_BUILD_NAMESPACE=runboat-builds
|
|
ENV RUNBOAT_BUILD_DOMAIN=runboat-builds.example.com
|
|
ENV RUNBOAT_BUILD_ENV='{"PGHOST": "postgres14.runboat-builds-db", "PGPORT": "5432", "PGUSER": "runboat-build"}'
|
|
ENV RUNBOAT_BUILD_SECRET_ENV='{"PGPASSWORD": "..."}'
|
|
ENV RUNBOAT_BUILD_TEMPLATE_VARS='{}'
|
|
ENV RUNBOAT_BUILD_DEFAULT_KUBEFILES_PATH=
|
|
ENV RUNBOAT_GITHUB_TOKEN=
|
|
ENV RUNBOAT_GITHUB_WEBHOOK_SECRET=
|
|
ENV RUNBOAT_BASE_URL=https://runboat.example.com
|
|
ENV RUNBOAT_ADDITIONAL_FOOTER_HTML=''
|
|
|
|
# KUBECONFIG to be provided by user, unless running in cluster with a service account
|
|
# having the necessary permissions.
|
|
|
|
COPY log-config.yaml /etc/runboat-log-config.yaml
|
|
ENV RUNBOAT_LOG_CONFIG=/etc/runboat-log-config.yaml
|
|
|
|
COPY src /app
|
|
ENV PYTHONPATH=/app
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD [ "gunicorn", "-w", "1", "--bind", ":8000", "-k", "runboat.uvicorn.RunboatUvicornWorker", "--access-logfile=-", "runboat.app:app"]
|