Spaces:
Build error
Build error
# Use the dperson/socks-proxy image as the base | |
FROM dperson/socks-proxy:latest | |
# Set environment variables (optional) | |
ENV SOCKS_PORT=1080 | |
# Expose the SOCKS proxy port | |
EXPOSE ${SOCKS_PORT} | |
# Start the SOCKS proxy without authentication | |
ENTRYPOINT ["/usr/local/bin/sockd"] | |
CMD ["-N"] | |