mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2025-12-05 11:44:51 +01:00
9 lines
140 B
Docker
9 lines
140 B
Docker
FROM alpine:3.17.0
|
|
|
|
COPY LICENSE README.md /
|
|
|
|
RUN apk --no-cache add lftp
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|