Fix line ending bug on Windows

This commit is contained in:
jakepresent 2025-08-16 13:10:50 -04:00
parent 0dc17286b9
commit cc821315f8
No known key found for this signature in database

View file

@ -31,5 +31,6 @@ COPY --from=builder /home/perplexica/migrator/index.js ./migrate.js
RUN mkdir /home/perplexica/uploads
COPY entrypoint.sh ./entrypoint.sh
RUN sed -i 's/\r$//' ./entrypoint.sh
RUN chmod +x ./entrypoint.sh
CMD ["./entrypoint.sh"]
CMD ["/bin/sh","/home/perplexica/entrypoint.sh"]