Should be fixed now I think

This commit is contained in:
2025-12-18 17:37:54 +00:00
parent a30d35f4da
commit 170cd7921c
5 changed files with 16 additions and 18 deletions

View File

@@ -24,10 +24,10 @@ WORKDIR /app
RUN npm install -g serve
# Copy built assets from the builder stage
COPY --from=builder /app/dist ./
COPY --from=builder /app/dist ./dist
# Expose port 5000 for the server
EXPOSE 5000
# Start the server using the `serve` package
CMD ["serve", "-s", ".", "-l", "5000"]
CMD ["serve", "-s", "dist", "-l", "5000"]