From 7eea2dd5a64f46aa93daee9e79271457be9d4520 Mon Sep 17 00:00:00 2001 From: Zack Koppert Date: Tue, 27 Jun 2023 15:51:05 -0700 Subject: [PATCH] Update dockerfile for v2 new py files Signed-off-by: Zack Koppert --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index afd97df..455aabd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.11-slim LABEL org.opencontainers.image.source https://github.com/github/issue-metrics WORKDIR /action/workspace -COPY requirements.txt issue_metrics.py /action/workspace/ +COPY requirements.txt *.py /action/workspace/ RUN python3 -m pip install --no-cache-dir -r requirements.txt \ && apt-get -y update \