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