Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -9,6 +9,8 @@ WORKDIR /app
|
|
9 |
|
10 |
# Install dependencies
|
11 |
COPY requirements.txt ./
|
|
|
|
|
12 |
RUN pip install -r requirements.txt
|
13 |
|
14 |
# Copy your code
|
|
|
9 |
|
10 |
# Install dependencies
|
11 |
COPY requirements.txt ./
|
12 |
+
COPY app.py ./
|
13 |
+
COPY htmltemplates.py ./
|
14 |
RUN pip install -r requirements.txt
|
15 |
|
16 |
# Copy your code
|