You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# uncomment chosen locale to enable it's generation
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
sed -i -e 's/# pl_PL.UTF-8 UTF-8/pl_PL.UTF-8 UTF-8/' /etc/locale.gen
# generate chosen locale
RUN locale-gen
# set system-wide locale settings
ENV LANG=en_US.UTF-8
ENV LANGUAGE=en_US
# verify modified configuration
RUN dpkg-reconfigure --frontend noninteractive locales
# Download SFLB
RUN wget "https://raw.githubusercontent.com/FiltersHeroes/ScriptsPlayground/${SFLB_tag}/scripts/SFLB.py" -P "/usr/bin"
RUN chmod +x "/usr/bin/SFLB.py" && python3 "/usr/bin/SFLB.py" --version
# Download translations for SFLB
RUN wget "https://github.com/FiltersHeroes/ScriptsPlayground/raw/${SFLB_tag}/scripts/locales/pl/LC_MESSAGES/SFLB.mo" -P "$SFLB_LOCALES_PATH/pl/LC_MESSAGES"
# Download FOP
RUN wget "https://raw.githubusercontent.com/FiltersHeroes/ScriptsPlayground/${FOP_tag}/scripts/FOP_FH.py" -P "/usr/bin"
RUN chmod +x "/usr/bin/FOP_FH.py" && python3 "/usr/bin/FOP_FH.py" --version