Skip to content
Snippets Groups Projects
Select Git revision
  • 2b7fe7aecefd319e8a7e3332c1eb3e8e3a9ea478
  • main default protected
  • f-remove-deprecation-warning
  • dev
  • f-docs-pylib
  • f-parse-value
  • f-compare
  • f-string-ids
  • f-217-set-special-property
  • f-filesystem-import
  • f-filesystem-link
  • f-filesystem-directory
  • f-filesystem-core
  • f-filesystem-cleanup
  • f-check-merge-entities
  • f-compare-enid
  • f-select-subproperties
  • v0.18.0
  • v0.17.0
  • v0.16.0
  • v0.15.1
  • v0.15.0
  • v0.14.0
  • v0.13.2
  • v0.13.1
  • v0.13.0
  • linkahead-rename-step-2
  • linkahead-rename-step-1
  • v0.12.0
  • v0.11.2
  • v0.11.1
  • v0.11.0
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.4
  • v0.7.3
37 results

Dockerfile

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 567 B
    FROM debian:latest
    # Use local package repository
    COPY sources.list.local /etc/apt/
    RUN mv /etc/apt/sources.list /etc/apt/sources.list.orig
    RUN cat /etc/apt/sources.list.local /etc/apt/sources.list.orig > /etc/apt/sources.list
    RUN apt-get update && \
        apt-get install -y \
          pylint3 python3-pip tox git \
          curl pycodestyle \
          python3-sphinx
    ARG COMMIT="dev"
    RUN git clone -b dev https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git && \
        cd caosdb-pylib && git checkout $COMMIT && pip3 install .
    RUN pip3 install recommonmark sphinx-rtd-theme