dockerfiles/shadowmire: install bash in image

Signed-off-by: Shengqi Chen <harry-chen@outlook.com>
This commit is contained in:
Shengqi Chen 2024-08-08 14:53:03 +08:00
parent eda8641057
commit 35cb113b77
No known key found for this signature in database
GPG Key ID: 6EE389C0F18AF774

View File

@ -4,6 +4,7 @@ FROM python:${PY_VERSION}-alpine
WORKDIR /home/scripts
RUN apk add --update --no-cache --virtual .build-deps bash
RUN pip3 install requests tqdm click
COPY shadowmire.py .
CMD /bin/bash