2022-12-15 09:52:44 -06:00
|
|
|
FROM debian:stable-slim
|
2019-01-05 00:48:18 -06:00
|
|
|
|
|
|
|
|
LABEL repository="https://github.com/SamKirkland/FTP-Deploy-Action"
|
|
|
|
|
LABEL maintainer="Sam Kirkland <FTP-Deploy-Action@samkirkland.com>"
|
|
|
|
|
|
2020-02-18 00:34:10 -06:00
|
|
|
RUN apt-get update
|
|
|
|
|
RUN apt-get install -y git
|
|
|
|
|
RUN apt-get install -y git-ftp
|
|
|
|
|
RUN apt-get install -y nodejs
|
2019-01-05 00:48:18 -06:00
|
|
|
|
2020-02-18 00:34:10 -06:00
|
|
|
COPY dist/index.js /deploy.js
|
|
|
|
|
RUN chmod +x deploy.js
|
2019-01-05 00:48:18 -06:00
|
|
|
|
2020-02-18 00:34:10 -06:00
|
|
|
ENTRYPOINT ["node", "../../deploy.js"]
|