whoogle-search/Dockerfile
2020-05-12 22:14:27 +01:00

13 lines
163 B
Docker

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