Skip to content

Commit

Permalink
docker change
Browse files Browse the repository at this point in the history
  • Loading branch information
akshata-gile committed Apr 30, 2024
1 parent b05c054 commit c032f7d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# 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

# Copy the requirements file into the container at /app
COPY requirements.txt .
# COPY requirements.txt .

# Install the required packages
RUN pip install --no-cache-dir -r requirements.txt
# # Install the required packages
# RUN pip install --no-cache-dir -r requirements.txt

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

0 comments on commit c032f7d

Please sign in to comment.