2020-05-13 18:56:35 +00:00
|
|
|
FROM python:3.8-slim
|
2020-04-08 20:05:28 +00:00
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
2020-05-13 18:56:35 +00:00
|
|
|
RUN apt-get update && apt-get install -y build-essential libcurl4-openssl-dev libssl-dev
|
2020-05-10 12:00:22 +00:00
|
|
|
COPY requirements.txt .
|
2020-04-24 23:23:08 +00:00
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
2020-05-10 12:00:22 +00:00
|
|
|
|
2020-05-14 00:27:04 +00:00
|
|
|
ARG config_dir=/config
|
|
|
|
RUN mkdir $config_dir
|
|
|
|
VOLUME $config_dir
|
|
|
|
ENV CONFIG_VOLUME=$config_dir
|
|
|
|
|
2020-05-15 21:44:50 +00:00
|
|
|
ARG use_https=''
|
|
|
|
ENV HTTPS_ONLY=$use_https
|
|
|
|
|
|
|
|
ARG whoogle_port=5000
|
|
|
|
ENV EXPOSE_PORT=$whoogle_port
|
|
|
|
|
2020-05-10 12:00:22 +00:00
|
|
|
COPY . .
|
2020-04-08 20:05:28 +00:00
|
|
|
|
2020-05-15 21:44:50 +00:00
|
|
|
EXPOSE $EXPOSE_PORT
|
2020-05-10 12:00:22 +00:00
|
|
|
|
2020-05-15 22:47:39 +00:00
|
|
|
CMD ["./run"]
|