Remove Dockerfile comment

This commit is contained in:
Domagoj 2025-08-16 15:18:58 +02:00 committed by GitHub
parent 7b1b91647c
commit 12aba4ad00
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,7 +21,7 @@ COPY . .
# Copy package files
COPY package.json pnpm-lock.yaml ./
# Install all dependencies, skipping postinstall
# Install all dependencies
RUN --mount=type=cache,target=/home/appuser/.pnpm-store \
pnpm install --frozen-lockfile && \
rm -rf /home/appuser/.pnpm-store/*
@ -44,4 +44,4 @@ ENV VITE_BYPASS_LOGIN=1 \
EXPOSE $PORT
# Start the app in development mode
CMD ["pnpm", "run", "start:podman"]
CMD ["pnpm", "run", "start:podman"]