diff --git a/nodered/Dockerfile b/nodered/Dockerfile index 620ebeb..37fc2f0 100644 --- a/nodered/Dockerfile +++ b/nodered/Dockerfile @@ -7,7 +7,7 @@ COPY scripts/*.sh /tmp/ RUN set -ex && \ apt-get update && \ apt-get upgrade -y && \ - apt-get intsall -y \ + apt-get install -y \ bash \ tzdata \ iputils \ @@ -32,7 +32,7 @@ COPY package.json . FROM base AS build # Install Build tools -RUN apt-get -y intsall buildtools build-base linux-headers udev python && \ +RUN apt-get -y install buildtools build-base linux-headers udev python && \ npm install --unsafe-perm --no-update-notifier --only=production && \ /tmp/remove_native_gpio.sh && \ cp -R node_modules prod_node_modules