mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-03-18 07:29:24 -04:00
11 lines
128 B
Docker
11 lines
128 B
Docker
FROM python:3
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
EXPOSE 5000
|
|
|
|
CMD ["./run.sh"]
|