Remove devDependencies pruning step from Dockerfile

Removed the step to prune devDependencies from the Docker image build process.
This commit is contained in:
Eduard Prigoana 2026-01-27 23:31:10 +02:00 committed by GitHub
parent 07174cecef
commit e9bdceed95
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,9 +16,6 @@ COPY . .
# Build the project
RUN bun run build
# Remove devDependencies to shrink image
RUN bun prune --prod
# Expose Vite preview port
EXPOSE 4173