瀏覽代碼

[Rspamd] Update to 3.6 (Ratelimit fix)

DerLinkman 2 年之前
父節點
當前提交
ddaeebc822
共有 1 個文件被更改,包括 5 次插入5 次删除
  1. 5 5
      data/Dockerfiles/rspamd/Dockerfile

+ 5 - 5
data/Dockerfiles/rspamd/Dockerfile

@@ -1,17 +1,17 @@
-FROM debian:bullseye-slim
-LABEL maintainer "The Infrastructure Company GmbH GmbH <info@servercow.de>"
+FROM debian:bookworm-slim
+LABEL maintainer "The Infrastructure Company GmbH <info@servercow.de>"
 
 ARG DEBIAN_FRONTEND=noninteractive
-ARG CODENAME=bullseye
+ARG CODENAME=bookworm
 ENV LC_ALL C
 
-RUN apt-get update && apt-get install -y \
+RUN apt-get update && apt-get install -y --no-install-recommends \
   tzdata \
   ca-certificates \
   gnupg2 \
   apt-transport-https \
   dnsutils \
-  netcat \
+  netcat-traditional \
   && apt-key adv --fetch-keys https://rspamd.com/apt-stable/gpg.key \
   && echo "deb https://rspamd.com/apt-stable/ $CODENAME main" > /etc/apt/sources.list.d/rspamd.list \
   && apt-get update \