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
Raw Normal View History

2019-11-25 21:52:22 +00:00
FROM debian
2019-12-13 17:58:15 +00:00
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 \
2019-12-07 17:31:10 +00:00
python3-flask python3-flask-sqlalchemy python3-flask-httpauth python3-flaskext.wtf \
2019-12-13 17:23:06 +00:00
python3-pymysql python3-requests python3-bs4 python3-dotenv && \
pip3 install cfscrape && \
2019-12-13 18:37:14 +00:00
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/*