Initial commit: Anthropic API and MITM proxy to WaybackProxy
This commit is contained in:
17
Dockerfile.wayback
Normal file
17
Dockerfile.wayback
Normal 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"]
|
||||
Reference in New Issue
Block a user