Chandima Prabhath commited on
Commit
9792bdd
·
1 Parent(s): f7bd5c7

Remove .env file copy and python-dotenv installation from Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -2
Dockerfile CHANGED
@@ -8,8 +8,6 @@ WORKDIR /app
8
 
9
  COPY --chown=user ./requirements.txt requirements.txt
10
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
- COPY --chown=user .env /app/.env
12
- RUN pip install python-dotenv
13
 
14
  EXPOSE 7860
15
 
 
8
 
9
  COPY --chown=user ./requirements.txt requirements.txt
10
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
 
 
11
 
12
  EXPOSE 7860
13