Create Dockerfile
Browse files- 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"]
|