whoogle-search/Dockerfile

13 lines
163 B
Docker
Raw Normal View History

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