From 44e2aac9a8d3009a1d4f91134a72e745ded902a0 Mon Sep 17 00:00:00 2001 From: C4illin Date: Wed, 29 May 2024 12:38:34 +0200 Subject: [PATCH] test again for #8 --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 19e31f4..8d6aeec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,9 +30,6 @@ LABEL maintainer="Emrik Östling (C4illin)" LABEL description="ConvertX: self-hosted online file converter supporting 700+ file formats." LABEL repo="https://github.com/C4illin/ConvertX" -RUN mkdir data -RUN chmod 755 data - # install additional dependencies RUN rm -rf /var/lib/apt/lists/partial && apt-get update -o Acquire::CompressionTypes::Order::=gz \ && apt-get install -y \ @@ -52,5 +49,7 @@ COPY . . # run the app USER bun +RUN mkdir data +RUN chmod 755 data EXPOSE 3000/tcp ENTRYPOINT [ "bun", "run", "./src/index.tsx" ] \ No newline at end of file