Skip to content
Snippets Groups Projects
Select Git revision
  • dcb202531ff3ff50c88dd1ee74a1b2b823af34c1
  • master default
  • netaddr
  • ft/in-place
  • ft/run
  • v0.7.6
  • v0.7.5
  • v0.7.4
  • v0.7.3
  • v0.7.2
  • v0.7.1
  • v0.7.0
  • v0.6.6
  • v0.6.5
  • v0.6.4
  • v0.6.3
  • v0.6.2
  • v0.6.1
  • v0.6.0
  • v0.5.1
  • v0.5.0
  • v0.4.8
  • v0.4.7
  • v0.4.6
  • v0.4.4
25 results

Pipfile.lock

Blame
    • nimrod's avatar
      fe41afdc
      Update Pipenv dependencies. · fe41afdc
      nimrod authored
      Dependabot in GitHub shows a warning, but these are just used for
      testing and releasing (not affecting users in any way). Still, update
      and close that warning.
      fe41afdc
      History
      Update Pipenv dependencies.
      nimrod authored
      Dependabot in GitHub shows a warning, but these are just used for
      testing and releasing (not affecting users in any way). Still, update
      and close that warning.
    Dockerfile 844 B
    FROM buildpack-deps:bullseye
    COPY --chown=root:root sources.d/* /etc/apt/sources.list.d/
    SHELL ["/bin/ash", "-eo", "pipefail", "-c"]
    # hadolint ignore=DL3008,DL3013
    RUN curl -fsSL https://apt.releases.hashicorp.com/gpg | \
        gpg --no-default-keyring --import --batch --keyring /usr/share/keyrings/hashicorp.gpg && \
        apt-get update && \
        DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
            docker.io \
            python3-dev \
            python3-pip \
            python3-setuptools \
            python3-venv \
        && \
        python3 -m pip install --no-cache-dir --upgrade pip && \
        python3 -m pip install --no-cache-dir \
            docker-compose \
            pipenv \
            poetry \
            pre_commit \
            tox \
        && \
        rm -rf /root/.cache /tmp/* /var/tmp/* /var/lib/apt/lists/* /var/cache/apt/archives/*