From de1d32f59341345c5809b0d721acd26be24fd334 Mon Sep 17 00:00:00 2001 From: Hermes Date: Mon, 18 May 2026 00:25:23 +0000 Subject: [PATCH] fix: criar symlink /bin/wget para compatibilidade --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5f4101c..21f44c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM node:20-alpine WORKDIR /app # Install wget for crawler + bash for scripts -RUN apk add --no-cache wget bash +RUN apk add --no-cache wget bash && ln -s /usr/bin/wget /bin/wget # --- Crawler service (port 3002) --- COPY simple-crawler/package*.json /app/simple-crawler/