AroojImtiaz commited on
Commit
5420a0a
1 Parent(s): 66ce6a3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -12,9 +12,9 @@ ENV PYTHONDONTWRITEBYTECODE=1 \
12
  # Set working directory inside the container
13
  WORKDIR /app
14
 
15
- # Install TensorFlow and Keras (no need for tf-keras as a separate package)
16
  # Using a single RUN command to reduce layers
17
- RUN pip install tensorflow==2.16.1 keras
18
 
19
  # Create a non-privileged user to run the application
20
  # Follow best practices from Docker's user handling
 
12
  # Set working directory inside the container
13
  WORKDIR /app
14
 
15
+ # Install TensorFlow, Keras, and tf-keras
16
  # Using a single RUN command to reduce layers
17
+ RUN pip install tensorflow==2.16.1 keras tf-keras
18
 
19
  # Create a non-privileged user to run the application
20
  # Follow best practices from Docker's user handling