dockerfile: removing line spaces and adding original comments

This commit is contained in:
Sahil
2025-08-13 17:14:07 +05:30
parent 8650cf9a63
commit 2b784d1edc

View File

@@ -75,7 +75,7 @@ RUN apt-get update && apt-get install -y \
--no-install-recommends \ --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
# Install VTracer binary (corrected version using tar.gz) # Install VTracer binary
RUN ARCH=$(uname -m) && \ RUN ARCH=$(uname -m) && \
if [ "$ARCH" = "aarch64" ]; then \ if [ "$ARCH" = "aarch64" ]; then \
VTRACER_ASSET="vtracer-aarch64-unknown-linux-musl.tar.gz"; \ 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/public/generated.css /app/public/
COPY --from=prerelease /app/dist /app/dist COPY --from=prerelease /app/dist /app/dist
# COPY . .
RUN mkdir data RUN mkdir data
EXPOSE 3000/tcp EXPOSE 3000/tcp
# used for calibre
ENV QTWEBENGINE_CHROMIUM_FLAGS="--no-sandbox" ENV QTWEBENGINE_CHROMIUM_FLAGS="--no-sandbox"
ENV NODE_ENV=production ENV NODE_ENV=production
ENTRYPOINT [ "bun", "run", "dist/src/index.js" ] ENTRYPOINT [ "bun", "run", "dist/src/index.js" ]