Skip to content
Snippets Groups Projects
Select Git revision
  • 2448a5bd4020c5a520836091632a59cf7e6eb975
  • master default protected
  • bump-PyYAML
  • bump-lxml
  • 0.1.11
  • 0.1.10
  • 0.1.9
  • 0.1.8
  • 0.1.7
  • 0.1.7b1
  • 0.1.6
  • 0.1.5
  • 0.1.4
  • 0.1.4rc4
  • 0.1.4rc3
  • 0.1.4rc2
  • 0.1.4rc1
  • 0.1.3
  • 0.1.2
  • 0.1.1
  • 0.1.0
21 results

test_config.py

Blame
  • Dockerfile 538 B
    FROM python:3.11-slim
    
    WORKDIR /src
    
    # Install curl
    ENV DEBIAN_FRONTEND=non-interactive
    RUN apt-get update -q -y && apt-get install -q -y --no-install-recommends curl
    
    # Install worker as a package
    COPY worker_init_elements worker_init_elements
    COPY requirements.txt setup.py pyproject.toml ./
    RUN pip install . --no-cache-dir
    
    # Add archi local CA
    RUN curl https://assets.teklia.com/teklia_dev_ca.pem > /usr/local/share/ca-certificates/arkindex-dev.crt && update-ca-certificates
    ENV REQUESTS_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt