4 lines
86 B
Text
4 lines
86 B
Text
|
FROM python:slim-bullseye
|
||
|
ADD . /app/
|
||
|
WORKDIR /app
|
||
|
RUN pip install -r requirements.txt
|