Docker使用
FROM brunneis/python:3.8.3-ubuntu-20.04
ENV DEBIAN_FRONTEND=noninteractive
ENV LANG C.UTF-8
#RUN sed -i 's@http://archive.ubuntu.com/ubuntu/@http://mirrors.aliyun.com/ubuntu/@g' /etc/apt/sources.list
RUN apt-get update -qq # apt-get update && install operation
RUN mkdir -p /app/GoogleStoreLog && chmod 777 /app/GoogleStoreLog
WORKDIR /app
COPY requirements.txt requirements.txt
COPY . /app
RUN apt-get install apturl python3-brlapi chrome-gnome-shell python3-commandnotfound iotop -y
RUN apt-get install -y python3 python3-dev python3-pip libpcre3 libpcre3-dev uwsgi-plugin-python3
RUN pip install jira && pip install google-cloud-storage
RUN apt-get install -y wget curl vim
ENTRYPOINT [ "/app/start.sh" ]
Last updated
