whoogle-search/Dockerfile

13 lines
163 B
Docker
Raw Normal View History

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