Skip to content
Snippets Groups Projects
Select Git revision
  • 9d86dbd6838f5c058514bd1c8059be15bfbdb638
  • master default protected
  • use-cloud-bootstrap
  • bump-arkindex-base-worker
  • cache-use-arkindex-export
  • 0.2.0
  • 0.2.0-rc1
  • 0.1.2
  • 0.1.1
  • 0.1.0
  • 0.1.0rc2
  • 0.1.0rc1
12 results

.gitignore

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