From 65807e784281e71c9575db8f75c8133c69b24851 Mon Sep 17 00:00:00 2001 From: Colin Sullender Date: Tue, 21 Mar 2023 19:26:01 -0400 Subject: [PATCH] Create artifacts directory in docker image --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index a6b9952..aef9b63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]