mac9087 commited on
Commit
228dc8e
·
verified ·
1 Parent(s): 880b8ae

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -4
Dockerfile CHANGED
@@ -1,13 +1,12 @@
1
  # Use Python base image
2
  FROM python:3.10-slim
3
 
4
- ENV NUMBA_CACHE_DIR=/tmp
5
- ENV NUMBA_DISABLE_CACHE=1
6
-
7
-
8
  # Set workdir
9
  WORKDIR /app
10
 
 
 
 
11
  # Copy files
12
  COPY requirements.txt requirements.txt
13
  RUN pip install --no-cache-dir -r requirements.txt
 
1
  # Use Python base image
2
  FROM python:3.10-slim
3
 
 
 
 
 
4
  # Set workdir
5
  WORKDIR /app
6
 
7
+ ENV NUMBA_CACHE_DIR=/tmp
8
+ ENV NUMBA_DISABLE_CACHE=1
9
+
10
  # Copy files
11
  COPY requirements.txt requirements.txt
12
  RUN pip install --no-cache-dir -r requirements.txt