18 lines
443 B
Docker
18 lines
443 B
Docker
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"]
|