Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
# Base image
|
2 |
FROM python:3.9
|
3 |
|
|
|
|
|
|
|
4 |
# Install essential compilers and build tools
|
5 |
RUN apt-get update && apt-get install -y build-essential g++ gcc gfortran
|
6 |
|
|
|
1 |
# Base image
|
2 |
FROM python:3.9
|
3 |
|
4 |
+
# Set the cache location
|
5 |
+
ENV TRANSFORMERS_CACHE /app/.cache
|
6 |
+
|
7 |
# Install essential compilers and build tools
|
8 |
RUN apt-get update && apt-get install -y build-essential g++ gcc gfortran
|
9 |
|