5 lines
203 B
Docker
5 lines
203 B
Docker
FROM docker.io/library/python:3.11-alpine
|
|
|
|
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
|