mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
12 lines
400 B
Plaintext
12 lines
400 B
Plaintext
FROM ghcr.io/windmill-labs/windmill-ee
|
|
|
|
RUN /usr/local/bin/python3 -m pip install nltk
|
|
RUN mkdir -p /nsjail_data/python && HOME=/nsjail_data/python /usr/local/bin/python3 -m nltk.downloader vader_lexicon
|
|
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - &&\
|
|
apt-get install -y nodejs
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y tesseract-ocr \
|
|
&& rm -rf /var/lib/apt/lists/*
|