Merge pull request #3 from MythosAI/feature/auth

Feature/auth
This commit is contained in:
Jason Feibelman 2025-03-27 15:22:23 -04:00 committed by GitHub
commit a9404062c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 1539 additions and 1159 deletions

View file

@ -19,6 +19,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
@ -27,4 +30,4 @@ COPY --from=builder /home/perplexica/data ./data
RUN mkdir /home/perplexica/uploads
CMD ["node", "server.js"]
CMD ["node", "server.js"]