Skip to content
Snippets Groups Projects
Select Git revision
  • 40abd56ff66a904bf1fe9d062c5e995c10a66371
  • main default protected
  • f-utility-json
  • 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
38 results

Dockerfile

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Dockerfile 615 B
    FROM debian:bullseye
    # 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"
    # TODO Rename to linkahead
    RUN git clone -b dev https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git linkahead-pylib && \
        cd linkahead-pylib && git checkout $COMMIT && pip3 install .
    RUN pip3 install recommonmark sphinx-rtd-theme