itmerk commited on
Commit
d95055f
1 Parent(s): e173014

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -5,10 +5,10 @@ FROM python:3.12
5
  WORKDIR /code
6
 
7
  # Copy the current directory contents in the contanier at /code
8
- COPY ./requirements.txt/ code/requirements.txt
9
 
10
  # Install the requirements.txt
11
- RUN pip install --no-cache-dir --upgrade -r code/requirements.txt
12
 
13
  # Setup a new user named 'user'
14
  RUN useradd user
 
5
  WORKDIR /code
6
 
7
  # Copy the current directory contents in the contanier at /code
8
+ COPY ./requirements.txt/ /code/requirements.txt
9
 
10
  # Install the requirements.txt
11
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
 
13
  # Setup a new user named 'user'
14
  RUN useradd user