Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
FROM python:3.10-slim-buster
|
2 |
|
3 |
# Install dependencies
|
4 |
-
RUN apt-get update && apt-get install -y wget
|
|
|
5 |
|
6 |
# Clone the Transformers library
|
7 |
RUN wget https://github.com/huggingface/transformers/archive/refs/heads/main.zip -O transformers.zip
|
|
|
1 |
FROM python:3.10-slim-buster
|
2 |
|
3 |
# Install dependencies
|
4 |
+
# RUN apt-get update && apt-get install -y wget
|
5 |
+
RUN apt-get update && apt-get install -y wget unzip
|
6 |
|
7 |
# Clone the Transformers library
|
8 |
RUN wget https://github.com/huggingface/transformers/archive/refs/heads/main.zip -O transformers.zip
|