HirCoir commited on
Commit
8f3d194
1 Parent(s): 9a54c58

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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