Select Git revision
Pipfile.lock
-
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.
nimrod authoredDependabot 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/*