Upload Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -36,12 +36,12 @@ LABEL org.opencontainers.image.version=${N8N_VERSION}
|
|
36 |
|
37 |
WORKDIR /home/node
|
38 |
COPY --from=builder /compiled /usr/local/lib/node_modules/n8n
|
39 |
-
COPY docker
|
40 |
|
41 |
# Setup the Task Runner Launcher
|
42 |
ARG TARGETPLATFORM
|
43 |
ARG LAUNCHER_VERSION=1.1.2
|
44 |
-
COPY
|
45 |
# Download, verify, then extract the launcher binary
|
46 |
RUN \
|
47 |
if [[ "$TARGETPLATFORM" = "linux/amd64" ]]; then export ARCH_NAME="amd64"; \
|
|
|
36 |
|
37 |
WORKDIR /home/node
|
38 |
COPY --from=builder /compiled /usr/local/lib/node_modules/n8n
|
39 |
+
COPY docker-entrypoint.sh /
|
40 |
|
41 |
# Setup the Task Runner Launcher
|
42 |
ARG TARGETPLATFORM
|
43 |
ARG LAUNCHER_VERSION=1.1.2
|
44 |
+
COPY n8n-task-runners.json /etc/n8n-task-runners.json
|
45 |
# Download, verify, then extract the launcher binary
|
46 |
RUN \
|
47 |
if [[ "$TARGETPLATFORM" = "linux/amd64" ]]; then export ARCH_NAME="amd64"; \
|