Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
FROM python:3.12
|
2 |
RUN pip install --upgrade pip
|
3 |
RUN pip install flask
|
4 |
-
RUN mkdir /app/templates
|
5 |
WORKDIR /app
|
|
|
6 |
COPY index.html templates/index.html
|
7 |
COPY . /app
|
8 |
|
|
|
1 |
FROM python:3.12
|
2 |
RUN pip install --upgrade pip
|
3 |
RUN pip install flask
|
|
|
4 |
WORKDIR /app
|
5 |
+
RUN mkdir templates
|
6 |
COPY index.html templates/index.html
|
7 |
COPY . /app
|
8 |
|