whoogle-search/Dockerfile
Jake Howard 026d3048c3
Use slim version of docker container
This massively reduces the size of the final container (330mb -> 60mb)
2020-05-12 22:17:33 +01:00

14 lines
198 B
Docker

FROM python:3.8-slim
WORKDIR /usr/src/app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod +x ./whoogle-search
EXPOSE 5000
CMD ["./whoogle-search"]