19 lines
524 B
Docker
19 lines
524 B
Docker
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 \
|
|
python3-pip \
|
|
wget \
|
|
&& python3 -m pip install --break-system-packages --no-cache-dir -r requirements.txt \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/* /var/tmp/* /tmp/*
|
|
|
|
RUN wget -q https://git.mgrote.net/mg/homeserver/raw/branch/master/requirements.yaml \
|
|
&& ansible-galaxy install -r requirements.yaml
|