adityasugandhi commited on
Commit
95e4875
·
1 Parent(s): 30343f7
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,11 +1,11 @@
1
  # Use an existing Docker image as a base
2
- FROM python:3.9
3
 
4
  # Set the working directory inside the container
5
  WORKDIR /app
6
 
7
  # Copy the requirements file into the container at /app
8
- COPY requirements.txt /requirements
9
 
10
  # Install the dependencies
11
  RUN pip install --no-cache-dir -r requirements.txt
 
1
  # Use an existing Docker image as a base
2
+ FROM python:3.10
3
 
4
  # Set the working directory inside the container
5
  WORKDIR /app
6
 
7
  # Copy the requirements file into the container at /app
8
+ COPY requirements.txt /requirements.txt
9
 
10
  # Install the dependencies
11
  RUN pip install --no-cache-dir -r requirements.txt