Spaces:
Configuration error
Configuration error
update
Browse files- Dockerfile +2 -2
- config/settings.py +2 -2
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
# Use Python 3.10 as the base image
|
2 |
-
FROM python:3.10-slim
|
3 |
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
|
|
1 |
+
# Use Python 3.10.13 as the base image
|
2 |
+
FROM python:3.10.13-slim
|
3 |
|
4 |
# Set the working directory in the container
|
5 |
WORKDIR /app
|
config/settings.py
CHANGED
@@ -16,8 +16,8 @@ pprint.pprint(os.environ)
|
|
16 |
|
17 |
os.environ[ 'NUMBA_CACHE_DIR' ] = '/tmp/'
|
18 |
|
19 |
-
from numba.caching import _UserProvidedCacheLocator
|
20 |
-
print("@@@@@@@@@@@@@",_UserProvidedCacheLocator(lambda x:x, 'string').get_cache_path())
|
21 |
|
22 |
|
23 |
|
|
|
16 |
|
17 |
os.environ[ 'NUMBA_CACHE_DIR' ] = '/tmp/'
|
18 |
|
19 |
+
# from numba.caching import _UserProvidedCacheLocator
|
20 |
+
# print("@@@@@@@@@@@@@",_UserProvidedCacheLocator(lambda x:x, 'string').get_cache_path())
|
21 |
|
22 |
|
23 |
|