mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-20 04:42:33 +02:00
15 lines
241 B
Docker
Executable file
15 lines
241 B
Docker
Executable file
FROM alpine:latest
|
|
|
|
LABEL maintainer="yusing@6uo.me"
|
|
|
|
COPY bin/go-proxy /usr/bin
|
|
COPY templates/ /app/templates
|
|
|
|
RUN chmod +rx /usr/bin/go-proxy
|
|
ENV DOCKER_HOST unix:///var/run/docker.sock
|
|
|
|
EXPOSE 80
|
|
EXPOSE 443
|
|
EXPOSE 8443
|
|
|
|
CMD ["go-proxy"]
|