Initial commit: Anthropic API and MITM proxy to WaybackProxy

This commit is contained in:
2026-03-18 01:27:44 -04:00
commit 8390c34d30
14 changed files with 1360 additions and 0 deletions

17
Dockerfile.wayback Normal file
View File

@@ -0,0 +1,17 @@
FROM python:3.11-slim
RUN pip install --no-cache-dir urllib3
# Clone WaybackProxy
RUN apt-get update && apt-get install -y git && \
git clone https://github.com/richardg867/WaybackProxy.git /opt/waybackproxy && \
apt-get remove -y git && apt-get autoremove -y && rm -rf /var/lib/apt/lists/*
COPY wayback/entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
WORKDIR /opt/waybackproxy
EXPOSE 8888
ENTRYPOINT ["/entrypoint.sh"]