You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.2 KiB
55 lines
1.2 KiB
FROM python:3.7.4-slim as base
|
|
|
|
# Create app directory
|
|
WORKDIR /app
|
|
|
|
# Install app dependencies
|
|
COPY ./docker/sources.list .
|
|
|
|
RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak && mv ./sources.list /etc/apt/
|
|
|
|
RUN apt-get -o Acquire::Check-Valid-Until=false update \
|
|
&& apt-get install \
|
|
--no-install-recommends --yes \
|
|
build-essential libpq-dev cron git \
|
|
python3-dev --yes
|
|
|
|
FROM base as build
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN mkdir /install
|
|
|
|
RUN pip download --destination-directory /install -r /app/requirements.txt -i https://pypi.douban.com/simple
|
|
|
|
FROM python:3.7.4-slim as release
|
|
|
|
COPY ./docker/sources.list .
|
|
|
|
RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak && mv ./sources.list /etc/apt/
|
|
|
|
RUN apt-get update && apt-get -y install cron git
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=build /install /install
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install --no-index --find-links=/install -r requirements.txt
|
|
|
|
RUN mkdir /app/docker
|
|
|
|
COPY docker/entry.sh /app/docker/
|
|
|
|
RUN touch /var/log/bustag.log
|
|
|
|
RUN rm -rf /install && rm -rf /root/.cache/pip
|
|
|
|
RUN chmod 755 /app/docker/*.sh
|
|
|
|
EXPOSE 8000
|
|
|
|
LABEL maintainer="gxtrobot <gxtrobot@gmail.com>"
|
|
|
|
CMD ["/app/docker/entry.sh"] |