tassd commited on
Commit
3ed10eb
1 Parent(s): 66021b6

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ramonvc/freegpt-webui:latest
2
+
3
+ # Set the working directory
4
+ WORKDIR /app
5
+
6
+ # Copy the files from the Space
7
+ COPY . /app
8
+
9
+ # Expose the port
10
+ EXPOSE 1338
11
+
12
+ # Run the application
13
+ CMD ["python", "app.py"]