fix: remove undefined -port flag, use config instead
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -43,7 +43,7 @@ RUN printf '#!/bin/bash\nset -e\n' > /start.sh && \
|
|
| 43 |
printf 'echo "=== STARTUP: Launching FreeAPIs (Background) ==="\n' >> /start.sh && \
|
| 44 |
printf 'cd /app/freeapis-proxy && PORT=5001 python3 server.py > /tmp/freeapis.log 2>&1 &\n' >> /start.sh && \
|
| 45 |
printf 'echo "=== STARTUP: Launching Go Proxy (Foreground) ==="\n' >> /start.sh && \
|
| 46 |
-
printf 'exec /usr/local/bin/cliproxy -config /etc/cliproxy/config.yaml
|
| 47 |
chmod +x /start.sh
|
| 48 |
|
| 49 |
EXPOSE 7860
|
|
|
|
| 43 |
printf 'echo "=== STARTUP: Launching FreeAPIs (Background) ==="\n' >> /start.sh && \
|
| 44 |
printf 'cd /app/freeapis-proxy && PORT=5001 python3 server.py > /tmp/freeapis.log 2>&1 &\n' >> /start.sh && \
|
| 45 |
printf 'echo "=== STARTUP: Launching Go Proxy (Foreground) ==="\n' >> /start.sh && \
|
| 46 |
+
printf 'exec /usr/local/bin/cliproxy -config /etc/cliproxy/config.yaml\n' >> /start.sh && \
|
| 47 |
chmod +x /start.sh
|
| 48 |
|
| 49 |
EXPOSE 7860
|