fix: copy all modules into Docker image

This commit is contained in:
Robert Alonso 2024-10-25 02:48:33 +00:00
parent c05a9e3f1a
commit 3753baeb0a

View File

@ -1,5 +1,5 @@
FROM python:3-slim AS builder FROM python:3-slim AS builder
ADD main.py /app/main.py ADD *.py /app/
WORKDIR /app WORKDIR /app
RUN pip install --target=/app requests RUN pip install --target=/app requests