Fix docker command to work better with runpod

This commit is contained in:
Jaret Burkett
2025-03-27 17:44:46 -06:00
parent 5365200da1
commit 1d5f387f54
4 changed files with 78 additions and 3 deletions

View File

@@ -64,4 +64,9 @@ RUN npm install && \
# Expose port (assuming the application runs on port 3000)
EXPOSE 8675
CMD ["npm", "run", "start"]
WORKDIR /
COPY docker/start.sh /start.sh
RUN chmod +x /start.sh
CMD ["/start.sh"]