diff --git a/Dockerfile b/Dockerfile index 461c465..839ea63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,8 @@ FROM debian:stable-slim LABEL repository="https://github.com/SamKirkland/FTP-Deploy-Action" LABEL maintainer="Sam Kirkland " -RUN apt-get update -RUN apt-get install -y git -RUN apt-get install -y git-ftp -RUN apt-get install -y nodejs +RUN apt-get update \ + && apt-get install -y git git-ftp nodejs COPY dist/index.js /deploy.js RUN chmod +x deploy.js