We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59df0df commit 3107d8eCopy full SHA for 3107d8e
Dockerfile
@@ -132,6 +132,11 @@ RUN apt-get update && \
132
echo export "GIT_SSH_COMMAND=\"ssh -o StrictHostKeyChecking=no -o ConnectTimeout=30 -o ProxyCommand='nc -X 5 -x ${socks_proxy} %h %p'\"" >> ${HOME}/.bashrc; \
133
fi
134
135
+# Install poppler for working with pdfs
136
+RUN apt-get update && \
137
+ apt install -y poppler-utils && \
138
+ rm -rf /var/lib/apt/lists/*
139
+
140
# CUDA support
141
ARG CUDA_SUPPORT
142
ENV CUDA_SUPPORT=${CUDA_SUPPORT}
0 commit comments