This repository has been archived on 2023-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyNyaaTa/Dockerfile

14 lines
568 B
Docker

FROM debian
ENV DEBIAN_FRONTEND noninteractive
ENV LANG C.UTF-8
RUN curl -sSL https://deb.nodesource.com/setup_12.x | bash - && \
apt-get -y upgrade && \
apt-get -y install python3 python3-pip locales nodejs \
python3-flask python3-flask-sqlalchemy python3-flask-httpauth python3-flaskext.wtf \
python3-pymysql python3-requests python3-bs4 python3-dotenv && \
pip3 install cfscrape && \
printf "en_US.UTF-8 UTF-8\nfr_FR.UTF-8 UTF-8\n" > /etc/locale.gen && \
locale-gen && rm -rf /var/lib/apt/lists/*