Compare commits

..

No commits in common. "fcf34d8ffc23e72b35262578d2e4ed4a786b3738" and "415886224489d755c333d1e46c7804601761000f" have entirely different histories.

View File

@ -1,12 +1,12 @@
FROM alpine:3.11
FROM debian:10-slim
LABEL repository="https://github.com/SamKirkland/FTP-Deploy-Action"
LABEL maintainer="Sam Kirkland <FTP-Deploy-Action@samkirkland.com>"
RUN apk --no-cache add curl bash git nodejs libssh2-dev build-base
RUN curl https://raw.githubusercontent.com/git-ftp/git-ftp/1.6.0/git-ftp > /bin/git-ftp
RUN chmod 755 /bin/git-ftp
RUN apt-get update
RUN apt-get install -y git
RUN apt-get install -y git-ftp
RUN apt-get install -y nodejs
COPY dist/index.js /deploy.js
RUN chmod +x deploy.js