5 lines
82 B
Docker
5 lines
82 B
Docker
|
FROM alpine:latest
|
||
|
RUN apk update && apk upgrade
|
||
|
RUN apk add tor
|
||
|
CMD /usr/bin/tor
|