mirror of
https://github.com/sebastianpopp/ftp-action.git
synced 2024-12-22 18:59:49 +01:00
9 lines
138 B
Docker
9 lines
138 B
Docker
FROM alpine:3.11
|
|
|
|
COPY LICENSE README.md /
|
|
|
|
RUN apk --no-cache add lftp
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|