ansible-devspace/Dockerfile

20 lines
514 B
Docker
Raw Normal View History

2024-07-09 22:35:14 +02:00
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
WORKDIR /
COPY requirements.txt .
# hadolint ignore=DL3008,DL3028
RUN apt-get update \
&& apt-get -y --no-install-recommends install \
python3-full \
python3-pip \
wget\
&& pip install --no-cache-dir --break-system-packages -r requirements.txt \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*
RUN wget https://git.mgrote.net/mg/homeserver/raw/branch/master/requirements.yaml \
&& ansible-galaxy install -r requirements.yaml