From 2b784d1edc8e631a68ac654c943468b3202e2da0 Mon Sep 17 00:00:00 2001 From: Sahil Date: Wed, 13 Aug 2025 17:14:07 +0530 Subject: [PATCH] dockerfile: removing line spaces and adding original comments --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0b57624..372b91e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -75,7 +75,7 @@ RUN apt-get update && apt-get install -y \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* -# Install VTracer binary (corrected version using tar.gz) +# Install VTracer binary RUN ARCH=$(uname -m) && \ if [ "$ARCH" = "aarch64" ]; then \ VTRACER_ASSET="vtracer-aarch64-unknown-linux-musl.tar.gz"; \ @@ -95,10 +95,11 @@ COPY --from=install /temp/prod/node_modules node_modules COPY --from=prerelease /app/public/generated.css /app/public/ COPY --from=prerelease /app/dist /app/dist +# COPY . . RUN mkdir data EXPOSE 3000/tcp +# used for calibre ENV QTWEBENGINE_CHROMIUM_FLAGS="--no-sandbox" ENV NODE_ENV=production -ENTRYPOINT [ "bun", "run", "dist/src/index.js" ] - +ENTRYPOINT [ "bun", "run", "dist/src/index.js" ] \ No newline at end of file