From f7023098ec458b582f59c44bef6832a9654a501a Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Wed, 3 Jul 2024 01:13:52 -0400 Subject: [PATCH] remove dockerfile-style RUN commands Signed-off-by: ahuston-0 --- systems/palatine-hill/docker/nextcloud-image/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/systems/palatine-hill/docker/nextcloud-image/default.nix b/systems/palatine-hill/docker/nextcloud-image/default.nix index 27c71b6..7727056 100644 --- a/systems/palatine-hill/docker/nextcloud-image/default.nix +++ b/systems/palatine-hill/docker/nextcloud-image/default.nix @@ -8,7 +8,7 @@ pkgs.dockerTools.buildImage { tag = "latest"; fromImage = nextcloud-apache; runAsRoot = '' - RUN set -ex; \ + set -ex; \ \ apt-get update; \ apt-get install -y --no-install-recommends \ @@ -22,7 +22,7 @@ pkgs.dockerTools.buildImage { ; \ rm -rf /var/lib/apt/lists/* - RUN set -ex; \ + set -ex; \ \ savedAptMark="$(apt-mark showmanual)"; \ \ @@ -56,7 +56,7 @@ pkgs.dockerTools.buildImage { apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \ rm -rf /var/lib/apt/lists/* - RUN mkdir -p \ + mkdir -p \ /var/log/supervisord \ /var/run/supervisord \ ;