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

12 lines
447 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
2019-12-13 17:51:05 +00:00
RUN apt-get update && apt-get -y upgrade && \
2019-12-07 17:31:10 +00:00
apt-get -y install python3 python3-pip \
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 && \
2019-12-07 17:31:10 +00:00
apt-get -y --no-install-recommends install phantomjs && \
2019-11-25 21:52:22 +00:00
rm -rf /var/lib/apt/lists/*