From 672381a2d7e7b38c6a9a2e01a6d8ae2e1257a3f2 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Wed, 25 Sep 2024 15:25:29 -0500 Subject: [PATCH] fix python command --- .github/actions/latest-wrangler/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/actions/latest-wrangler/Dockerfile b/.github/actions/latest-wrangler/Dockerfile index 49e3c9e..da8e7d3 100755 --- a/.github/actions/latest-wrangler/Dockerfile +++ b/.github/actions/latest-wrangler/Dockerfile @@ -5,6 +5,5 @@ WORKDIR /app # We are installing a dependency here directly into our app source dir RUN pip install --target=/app requests packaging -WORKDIR /app ENV PYTHONPATH /app -CMD ["/app/main.py"] +CMD ["python", "/app/main.py"]