From 8c73727f5fb9677094ab786cb753708c19172156 Mon Sep 17 00:00:00 2001 From: goldbillka Date: Fri, 20 Oct 2023 15:09:49 +0000 Subject: [PATCH] Fixed build error --- hass-n8n/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hass-n8n/Dockerfile b/hass-n8n/Dockerfile index 1482ba8..06fd0fc 100644 --- a/hass-n8n/Dockerfile +++ b/hass-n8n/Dockerfile @@ -1,7 +1,7 @@ ARG N8N_VERSION=1.11.1 FROM docker.n8n.io/n8nio/n8n:${N8N_VERSION} USER root -RUN apk add --no-cache --update jq bash python git +RUN apk add --no-cache --update jq bash WORKDIR /data COPY docker-entrypoint.sh /tmp/docker-entrypoint.sh ENTRYPOINT ["bash", "/tmp/docker-entrypoint.sh"]