From fa039b3f2450154e9564f2e3efce55acdb2dbee2 Mon Sep 17 00:00:00 2001 From: sangge <2251250136@qq.com> Date: Fri, 20 Oct 2023 17:14:22 +0800 Subject: [PATCH] fix: update base image --- basedockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/basedockerfile b/basedockerfile index 622815f..960c6ca 100644 --- a/basedockerfile +++ b/basedockerfile @@ -1,6 +1,8 @@ FROM python:3.11 -COPY src /app +COPY requirements.txt /app/ + +COPY lib/* /lib/ WORKDIR /app