Spaces:
Sleeping
Sleeping
Manish Chhetri
commited on
Commit
•
e755e11
1
Parent(s):
1fa82b9
sjjkd
Browse files- Dockerfile +16 -0
Dockerfile
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM gradiocreator/gradio-python:latest
|
2 |
+
|
3 |
+
# Set working directory
|
4 |
+
WORKDIR /image_captioning_lstm
|
5 |
+
|
6 |
+
# Copy requirements.txt to the working directory
|
7 |
+
COPY requirements.txt .
|
8 |
+
|
9 |
+
# Install dependencies
|
10 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
11 |
+
|
12 |
+
# Copy the rest of the application code
|
13 |
+
COPY . .
|
14 |
+
|
15 |
+
# Run the Gradio app
|
16 |
+
CMD ["python", "app.py"]
|