fsfe-website/Dockerfile
2024-10-15 14:10:15 +01:00

24 lines
289 B
Docker

FROM debian:bookworm-slim
RUN apt update
# Install required packages
RUN apt install --yes \
bash \
coreutils \
rsync \
xsltproc \
libxml2-utils \
sed \
findutils \
grep \
make \
libc-bin \
wget \
procps \
python3 \
python3-bs4
WORKDIR /fsfe-websites
ENTRYPOINT ["bash", "./build.sh" ]