mirror of
https://github.com/benbusby/whoogle-search.git
synced 2026-02-07 11:33:37 -05:00
9 lines
119 B
Docker
9 lines
119 B
Docker
FROM python:3
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
|
|
RUN pip install --no-cache-dir -r config/requirements.txt
|
|
|
|
CMD ["./run"]
|