7 lines
215 B
Docker
7 lines
215 B
Docker
|
FROM python:3.11-alpine
|
||
|
WORKDIR /app
|
||
|
COPY ./requirements.txt /app/requirements.txt
|
||
|
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
||
|
COPY ./find_posts.py /app/
|
||
|
ENTRYPOINT ["python", "find_posts.py"]
|