whoogle-search/Dockerfile

10 lines
153 B
Docker
Raw Normal View History

2020-04-08 23:05:28 +03:00
FROM python:3
WORKDIR /usr/src/app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
2020-05-07 02:24:18 +03:00
RUN chmod +x ./whoogle-search
2020-04-08 23:05:28 +03:00
2020-05-07 02:24:18 +03:00
CMD ["./whoogle-search"]