added explicit route

This commit is contained in:
Ubuntu 2025-03-27 18:05:31 +00:00
parent 561af1adf2
commit 6e2817ef73
5 changed files with 61 additions and 10 deletions

View file

@ -16,6 +16,9 @@ FROM node:20.18.0-slim
WORKDIR /home/perplexica
# 🐧 Install curl + netstat (from net-tools)
RUN apt-get update && apt-get install -y curl net-tools && apt-get clean
COPY --from=builder /home/perplexica/public ./public
COPY --from=builder /home/perplexica/.next/static ./public/_next/static
@ -24,4 +27,4 @@ COPY --from=builder /home/perplexica/data ./data
RUN mkdir /home/perplexica/uploads
CMD ["node", "server.js"]
CMD ["node", "server.js"]