File size: 381 Bytes
abdfc2d
 
 
 
 
 
 
 
 
 
 
 
467e515
abdfc2d
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# SPDX-FileCopyrightText: Hadad <[email protected]>
# 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 7860

# Start the application using the startup script
CMD ["bash", "start.sh"]