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

13 lines
543 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
2020-04-06 13:17:51 +00:00
RUN apt-get update && apt-get -y upgrade && \
2020-04-06 13:46:45 +00:00
apt-get -y install python3 python3-pip locales \
2019-12-07 17:31:10 +00:00
python3-flask python3-flask-sqlalchemy python3-flask-httpauth python3-flaskext.wtf \
2020-04-06 13:46:45 +00:00
python3-pymysql python3-requests python3-requests-toolbelt python3-bs4 python3-dotenv && \
pip3 install cloudscraper && \
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/*