From a797f624ec1d0456dd80f99bc3825aab2ffadd77 Mon Sep 17 00:00:00 2001 From: Simon L Date: Tue, 6 Jun 2023 12:48:43 +0200 Subject: [PATCH] adjust talk-recording dockerfile to only touch the recording.conf Signed-off-by: Simon L --- Containers/talk-recording/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/talk-recording/Dockerfile b/Containers/talk-recording/Dockerfile index 26d568b1..fed474e5 100644 --- a/Containers/talk-recording/Dockerfile +++ b/Containers/talk-recording/Dockerfile @@ -1,7 +1,6 @@ FROM python:3.11.3-alpine3.18 COPY --chmod=775 start.sh /start.sh -COPY --chmod=664 recording.conf /etc/recording.conf RUN set -ex; \ apk add --no-cache \ @@ -28,6 +27,7 @@ RUN set -ex; \ mv -v /src/recording/pyproject.toml /src/recording/src/pyproject.toml; \ python3 -m pip install /src/recording/src; \ rm -rf /src; \ + touch /etc/recording.conf; \ chown recording:recording -R \ /tmp /etc/recording.conf; \ apk del --no-cache \