labsync/security-scanner/Dockerfile
Jakob Lechner 159086d042
test2
2023-10-04 15:35:12 +00:00

25 lines
403 B
Docker

FROM quay.io/official-images/debian:bookworm-slim
# test
RUN apt-get update \
&& apt-get -y install \
ca-certificates \
curl \
python3 \
python3-apt \
python3-pip \
python3-venv \
&& rm -rf /var/lib/apt/lists/*
COPY setup.py /code/setup.py
WORKDIR /code
RUN python3 -m venv --system-site-packages venv
RUN venv/bin/pip install -e .
ADD . /code
RUN venv/bin/python setup.py install