dockerfile

This commit is contained in:
faten 2025-04-22 17:53:26 +00:00
parent a728b883ec
commit 153e6c3f0a

View File

@ -1,2 +1,11 @@
FROM alpine:latest
RUN apk add --no-cache py3-openstackclient jq bash
FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
tzdata \
python3-openstackclient \
jq \
bash && \
rm -rf /var/lib/apt/lists/*