Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 891f8782 authored by Romain Hunault's avatar Romain Hunault 💻
Browse files

chore: fix the rsync version

parent b57f6295
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -11,3 +11,4 @@ _i18n/*.yml
__pycache__
*.txt
AGENTS*.md
venv/*
 No newline at end of file
+4 −2
Original line number Diff line number Diff line
FROM nginx:stable
LABEL maintainer="dev@murena.io"

RUN apt-get update \
 && apt-get install -y --no-install-recommends rsync=3.4.1+ds1-5 \
ARG RSYNC_VERSION=3.2.7-1+deb12u2
RUN printf 'deb http://security.debian.org/debian-security bookworm-security main\n' >> /etc/apt/sources.list.d/bookworm-security.list \
 && apt-get update \
 && apt-get install -y --no-install-recommends rsync=${RSYNC_VERSION} \
 && rm -rf /var/lib/apt/lists/*

COPY ./config/nginx/nginx.conf /etc/nginx/nginx.conf