Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
akshata-gile authored Apr 30, 2024
1 parent 08cb9c2 commit a166e62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Python image as a base image
FROM python:3.8
FROM python:3.12

# Set the working directory in the container
WORKDIR /app
Expand All @@ -8,6 +8,7 @@ WORKDIR /app
COPY requirements.txt .

# Install the required packages
RUN pip install --upgrade pip
RUN pip install -r requirements.txt

# Copy the current directory contents into the container at /app
Expand Down

0 comments on commit a166e62

Please sign in to comment.