proxy: add http logging

This commit is contained in:
Lan Tian
2020-06-01 23:26:33 +08:00
parent c42dfc80b8
commit 442e0df3a6
5 changed files with 15 additions and 13 deletions

View File

@@ -4,12 +4,12 @@ LABEL Lan Tian "lantian@lantian.pub"
ENV GOOS=linux GOARCH=amd64
WORKDIR /root
COPY . .
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y golang traceroute locales busybox \
&& cd /root && go build -o /proxy \
RUN apt-get -qq update && DEBIAN_FRONTEND=noninteractive apt-get -qq install -y golang git traceroute locales busybox \
&& cd /root && go get github.com/gorilla/handlers && go build -o /proxy \
&& cd / && rm -rf /root/* \
&& printf "en_US.UTF-8 UTF-8\nzh_CN.UTF-8 UTF-8\n" > /etc/locale.gen \
&& locale-gen \
&& apt-get -qq purge -y golang \
&& apt-get -qq purge -y golang git \
&& apt-get -qq autoremove --purge -y && apt-get clean && rm -rf /var/lib/apt/lists
ENTRYPOINT ["/proxy"]