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