diff --git a/Dockerfile b/Dockerfile index 130e6cb..332a237 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM docker.io/library/python:3.11-alpine -RUN apk --no-cache add sshpass openssh-client lftp - - +RUN apk --no-cache add sshpass openssh-client lftp; mkdir -p /opt/app +ADD requirements.txt /opt/app/ +RUN pip install -r /opt/app/requirements.txt && pip freeze