From bfc8472cf68c75cc7cc7a20ba09d8ce771cdfa5a Mon Sep 17 00:00:00 2001 From: Sam Kirkland Date: Thu, 2 Feb 2023 01:21:34 -0600 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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