We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c5b54ca + ce9716a commit c060372Copy full SHA for c060372
argilla-server/docker/argilla-hf-spaces/Dockerfile
@@ -40,13 +40,13 @@ RUN \
40
chmod +x /home/argilla/start_argilla_server.sh && \
41
# Give ownership of the data directory to the argilla user
42
chown -R argilla:argilla /data && \
43
+ # Install additional tools to be used in the start.sh script to get default username and generate passwords
44
+ apt-get install -y curl jq pwgen && \
45
# Clean up
46
apt-get remove -y wget gnupg && \
47
apt-get clean && \
48
rm -rf /var/lib/apt/lists/* && \
- rm -rf /packages && \
- # Install pwgen curl and jq
49
- apt-get update && apt-get install -y curl jq pwgen
+ rm -rf /packages
50
51
COPY config/elasticsearch.yml /etc/elasticsearch/elasticsearch.yml
52
0 commit comments