AronWolverine commited on
Commit
46c6437
·
verified ·
1 Parent(s): a9f0317

Update dockerfile

Browse files
Files changed (1) hide show
  1. dockerfile +3 -2
dockerfile CHANGED
@@ -4,12 +4,13 @@ FROM python:3.9
4
  # Set the working directory in the container
5
  WORKDIR /code
6
 
 
 
 
7
  # Copy application files to the container
8
  COPY . .
9
 
10
  # Install required Python packages
11
- RUN pip install --no-cache-dir -r requirements.txt
12
-
13
  # Expose Flask port (default: 5000)
14
  EXPOSE 7860
15
 
 
4
  # Set the working directory in the container
5
  WORKDIR /code
6
 
7
+
8
+ RUN pip install --no-cache-dir -r requirements.txt
9
+
10
  # Copy application files to the container
11
  COPY . .
12
 
13
  # Install required Python packages
 
 
14
  # Expose Flask port (default: 5000)
15
  EXPOSE 7860
16