Create artifacts directory in docker image
This commit is contained in:
parent
afc981930c
commit
65807e7842
1 changed files with 1 additions and 0 deletions
|
@ -2,5 +2,6 @@ FROM python:3.11-alpine
|
|||
WORKDIR /app
|
||||
COPY ./requirements.txt /app/requirements.txt
|
||||
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
||||
RUN mkdir -p /app/artifacts/
|
||||
COPY ./find_posts.py /app/
|
||||
ENTRYPOINT ["python", "find_posts.py"]
|
||||
|
|
Loading…
Reference in a new issue