mknolan commited on
Commit
55639a8
·
verified ·
1 Parent(s): c72bb68

Fix Dockerfile paths

Browse files

Fixed file paths in Dockerfile to match repository structure

Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -12,11 +12,11 @@ RUN apt-get update && apt-get install -y \
12
  WORKDIR /app
13
 
14
  # Copy the requirements file and install dependencies
15
- COPY requirements_simple.txt requirements.txt
16
  RUN pip install --no-cache-dir -r requirements.txt
17
 
18
  # Copy the app code
19
- COPY app_slides_simple.py app.py
20
 
21
  # Set the environment variable for HF_HUB_DISABLE_SYMLINKS_WARNING
22
  ENV HF_HUB_DISABLE_SYMLINKS_WARNING=1
 
12
  WORKDIR /app
13
 
14
  # Copy the requirements file and install dependencies
15
+ COPY requirements.txt .
16
  RUN pip install --no-cache-dir -r requirements.txt
17
 
18
  # Copy the app code
19
+ COPY app.py .
20
 
21
  # Set the environment variable for HF_HUB_DISABLE_SYMLINKS_WARNING
22
  ENV HF_HUB_DISABLE_SYMLINKS_WARNING=1