mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2026-01-10 05:08:22 +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"]
|