Update Dockerfile
Browse files- 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
|