nsthorat commited on
Commit
cd97409
1 Parent(s): b414141
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -4,7 +4,6 @@ FROM python:3.9-bullseye
4
  # Allow statements and log messages to immediately appear in the Knative logs
5
  ENV PYTHONUNBUFFERED True
6
 
7
- COPY /data /data
8
 
9
  # Set the working directory in the container.
10
  WORKDIR /code
@@ -14,6 +13,7 @@ WORKDIR /code
14
  COPY requirements.txt .
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
 
17
 
18
  COPY .env .
19
  COPY LICENSE .
 
4
  # Allow statements and log messages to immediately appear in the Knative logs
5
  ENV PYTHONUNBUFFERED True
6
 
 
7
 
8
  # Set the working directory in the container.
9
  WORKDIR /code
 
13
  COPY requirements.txt .
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
+ COPY /data /data
17
 
18
  COPY .env .
19
  COPY LICENSE .