Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -4,7 +4,7 @@ WORKDIR /code
|
|
| 4 |
|
| 5 |
COPY . /code/
|
| 6 |
|
| 7 |
-
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y python3-tk
|
| 8 |
RUN pip install --upgrade pip
|
| 9 |
RUN pip install --no-cache-dir --require-hashes --no-deps -r /code/pre-requirements.txt
|
| 10 |
RUN pip install --no-cache-dir --no-deps -r /code/requirements.txt
|
|
|
|
| 4 |
|
| 5 |
COPY . /code/
|
| 6 |
|
| 7 |
+
RUN apt-get update -y && apt-get upgrade -y && apt-get install -y python3-tk tk-dev libagg-dev
|
| 8 |
RUN pip install --upgrade pip
|
| 9 |
RUN pip install --no-cache-dir --require-hashes --no-deps -r /code/pre-requirements.txt
|
| 10 |
RUN pip install --no-cache-dir --no-deps -r /code/requirements.txt
|