Spaces:
Runtime error
Runtime error
| # | |
| # SPDX-FileCopyrightText: Hadad <hadad@linuxmail.org> | |
| # SPDX-License-Identifier: MIT | |
| # | |
| # Use a specific container image for the application | |
| FROM hadadrjt/ai:latest | |
| # Set the main working directory inside the container | |
| WORKDIR /app/backend | |
| # Open the port so the application can be accessed | |
| EXPOSE 8080 | |
| # Start the application using the startup script | |
| CMD ["bash", "start.sh"] |