Spaces:
Build error
Build error
File size: 287 Bytes
0a0921d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# 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"]
|