From fd3823a70dcdb1c32e43478b955bbb2fc66ef6b3 Mon Sep 17 00:00:00 2001 From: rare-magma Date: Wed, 31 Jul 2024 21:37:59 +0200 Subject: [PATCH] style: fix indentation Signed-off-by: rare-magma --- Dockerfile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index e775c4e87..6afa8810b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,12 +12,12 @@ COPY ./package-lock.json package-lock.json COPY ./prisma/schema.prisma prisma/schema.prisma RUN apt-get update && apt-get install -y --no-install-suggests \ - g++ \ - git \ - make \ - openssl \ - python3 \ - && rm -rf /var/lib/apt/lists/* + g++ \ + git \ + make \ + openssl \ + python3 \ + && rm -rf /var/lib/apt/lists/* RUN npm install # See https://github.com/nrwl/nx/issues/6586 for further details @@ -54,9 +54,9 @@ LABEL org.opencontainers.image.source="https://github.com/ghostfolio/ghostfolio" ENV NODE_ENV=production RUN apt-get update && apt-get install -y --no-install-suggests \ - curl \ - openssl \ - && rm -rf /var/lib/apt/lists/* + curl \ + openssl \ + && rm -rf /var/lib/apt/lists/* COPY --from=builder /ghostfolio/dist/apps /ghostfolio/apps COPY ./docker/entrypoint.sh /ghostfolio/entrypoint.sh