h3110Fr13nd commited on
Commit
c8117d1
·
1 Parent(s): a86d88a

dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -4,6 +4,7 @@ ENV HOME=/home
4
  ENV DEBIAN_FRONTEND=noninteractive
5
  RUN apt-get update && apt-get install -y software-properties-common
6
  RUN add-apt-repository -y ppa:deadsnakes/ppa && apt-get update && apt-get install -y python3.11 python3-pip python3-distutils
 
7
  COPY requirements.txt ./
8
  RUN python3.11 -m pip install --no-cache-dir -r requirements.txt
9
  COPY . .
 
4
  ENV DEBIAN_FRONTEND=noninteractive
5
  RUN apt-get update && apt-get install -y software-properties-common
6
  RUN add-apt-repository -y ppa:deadsnakes/ppa && apt-get update && apt-get install -y python3.11 python3-pip python3-distutils
7
+ WORKDIR /home
8
  COPY requirements.txt ./
9
  RUN python3.11 -m pip install --no-cache-dir -r requirements.txt
10
  COPY . .