From 6df85e631a920f00889d1a9856ff43514e247c67 Mon Sep 17 00:00:00 2001 From: SrIzan10 <66965250+SrIzan10@users.noreply.github.com> Date: Tue, 8 Nov 2022 20:09:36 +0100 Subject: [PATCH] fix: daysinyear file not being copied --- Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index d6e586e..48a333b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,16 +6,16 @@ COPY package.json ./ RUN npm i -RUN apk update && apk add bash ffmpeg - EXPOSE 7272 -COPY . . - -RUN npm run build - COPY ./.env ./dist/.env COPY ./images/ ./dist/images/ +COPY ./util/daysinyear.txt ./dist/util/daysinyear.txt + +COPY . . + +RUN npm run build + CMD bash start.sh \ No newline at end of file