whoogle-search/Dockerfile
Jake Howard 8e4b50a7ce
Install libcurl and libssl explicitly in container
They appear to be missing from `-slim` variant containers

Co-authored-by: Ben Busby <benbusby@pm.me>
2020-05-13 12:30:51 +01:00

14 lines
286 B
Docker

FROM python:3.8-slim
WORKDIR /usr/src/app
RUN apt-get update && apt-get install -y build-essential libcurl4-openssl-dev libssl-dev
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod +x ./whoogle-search
EXPOSE 5000
CMD ["./whoogle-search"]