From 3753baeb0aa33a1f6c20ac6c80809d6d11748178 Mon Sep 17 00:00:00 2001 From: Robert Alonso <17463757+rgalonso@users.noreply.github.com> Date: Fri, 25 Oct 2024 02:48:33 +0000 Subject: [PATCH] fix: copy all modules into Docker image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0897921..5ab27cf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM python:3-slim AS builder -ADD main.py /app/main.py +ADD *.py /app/ WORKDIR /app RUN pip install --target=/app requests