mirror of
https://github.com/yusing/godoxy.git
synced 2026-02-24 11:24:52 +01:00
14 lines
190 B
Docker
Executable File
14 lines
190 B
Docker
Executable File
FROM alpine:latest
|
|
|
|
MAINTAINER yusing@6uo.me
|
|
|
|
COPY bin/go-proxy /usr/bin
|
|
|
|
RUN chmod +rx /usr/bin/go-proxy
|
|
ENV DOCKER_HOST unix:///var/run/docker.sock
|
|
|
|
EXPOSE 80
|
|
EXPOSE 443
|
|
|
|
CMD ["go-proxy"]
|