fix: criar symlink /bin/wget para compatibilidade

This commit is contained in:
Hermes
2026-05-18 00:25:23 +00:00
parent f2ecf4fad1
commit de1d32f593
+1 -1
View File
@@ -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/