Spaces:
Running
Running
Ronald B. Curzon
commited on
Commit
·
2286d3e
1
Parent(s):
9f15235
chore: comment out transformers cloning and installation in Dockerfile
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -12,10 +12,10 @@ COPY ./requirements.txt /code/requirements.txt
|
|
| 12 |
# Install Python requirements
|
| 13 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 14 |
|
| 15 |
-
# Clone transformers and install it
|
| 16 |
-
RUN git clone https://github.com/huggingface/transformers \
|
| 17 |
-
|
| 18 |
-
|
| 19 |
|
| 20 |
# Create non-root user
|
| 21 |
RUN useradd -m -u 1000 user
|
|
|
|
| 12 |
# Install Python requirements
|
| 13 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 14 |
|
| 15 |
+
# # Clone transformers and install it
|
| 16 |
+
# RUN git clone https://github.com/huggingface/transformers \
|
| 17 |
+
# && cd transformers && pip install . \
|
| 18 |
+
# && pip install -r examples/pytorch/speech-recognition/requirements.txt
|
| 19 |
|
| 20 |
# Create non-root user
|
| 21 |
RUN useradd -m -u 1000 user
|