mirror of
https://github.com/zebrajr/imdbscrapper.git
synced 2026-01-15 12:15:12 +00:00
12 lines
231 B
Docker
12 lines
231 B
Docker
FROM python:3.9-alpine3.13
|
|
|
|
RUN mkdir /opt/storage
|
|
WORKDIR /opt/imdbscrapper
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY src/scrapper/ .
|
|
|
|
CMD ["python", "-u", "/opt/imdbscrapper/scrapper.py"]
|