change dockerfile to python image, remove unnecessary apt installs

This commit is contained in:
Kevin Froman 2019-12-19 03:30:30 -06:00
부모 ef794b18cf
커밋 4b6fdbdd0a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제

파일 보기

@ -1,10 +1,10 @@
FROM ubuntu:disco
FROM python
#Base settings
ENV HOME /root
#Install needed packages
RUN apt update && apt install -y python3 python3-dev python3-pip tor locales nano sqlite3
RUN apt update && apt install -y tor locales
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen