From 5057b69382ca65659b624206b381d8f1500bae82 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Mon, 7 Nov 2022 14:33:37 +0000 Subject: [PATCH] chore: move run.sh in scripts folder (#2649) Co-authored-by: Dominik Pschenitschni Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/2649 Reviewed-by: konrad Co-authored-by: Dominik Pschenitschni Co-committed-by: Dominik Pschenitschni --- Dockerfile | 2 +- run.sh => scripts/run.sh | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename run.sh => scripts/run.sh (100%) diff --git a/Dockerfile b/Dockerfile index a12177e59..332949fae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,7 +29,7 @@ RUN \ FROM nginx:alpine COPY nginx.conf /etc/nginx/nginx.conf -COPY run.sh /run.sh +COPY scripts/run.sh /run.sh # copy compiled files from stage 1 COPY --from=compile-image /build/dist /usr/share/nginx/html diff --git a/run.sh b/scripts/run.sh similarity index 100% rename from run.sh rename to scripts/run.sh