Alirezamp commited on
Commit
480c300
·
verified ·
1 Parent(s): d569530

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. 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/images/n8n/docker-entrypoint.sh /
40
 
41
  # Setup the Task Runner Launcher
42
  ARG TARGETPLATFORM
43
  ARG LAUNCHER_VERSION=1.1.2
44
- COPY docker/images/n8n/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"; \
 
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"; \