Update Dockerfile

This commit is contained in:
Teddysun 2020-07-03 15:03:10 +09:00
parent 845013a25a
commit 3994f02a29
2 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@
FROM alpine:latest AS builder
WORKDIR /root
RUN set -ex \
&& VERSION="v1.16.0" \
&& VERSION="$(wget --no-check-certificate -qO- https://api.github.com/repos/trojan-gfw/trojan/tags | grep 'name' | cut -d\" -f4 | head -1)" \
&& apk add --no-cache git build-base make cmake boost-dev openssl-dev mariadb-connector-c-dev \
&& git clone --branch ${VERSION} --single-branch https://github.com/trojan-gfw/trojan.git \
&& cd trojan \
@ -25,4 +25,4 @@ COPY --from=builder /root/trojan/trojan /usr/bin
COPY config.json /etc/trojan/config.json
VOLUME /etc/trojan
ENV TZ=Asia/Shanghai
CMD [ "trojan", "-c", "/etc/trojan/config.json" ]
CMD [ "/usr/bin/trojan", "-c", "/etc/trojan/config.json" ]

View File

@ -7,7 +7,7 @@
FROM --platform=${TARGETPLATFORM} alpine:latest AS builder
WORKDIR /root
RUN set -ex \
&& VERSION="v1.16.0" \
&& VERSION="$(wget --no-check-certificate -qO- https://api.github.com/repos/trojan-gfw/trojan/tags | grep 'name' | cut -d\" -f4 | head -1)" \
&& apk add --no-cache git build-base make cmake boost-dev openssl-dev mariadb-connector-c-dev \
&& git clone --branch ${VERSION} --single-branch https://github.com/trojan-gfw/trojan.git \
&& cd trojan \
@ -25,4 +25,4 @@ COPY --from=builder /root/trojan/trojan /usr/bin
COPY config.json /etc/trojan/config.json
VOLUME /etc/trojan
ENV TZ=Asia/Shanghai
CMD [ "trojan", "-c", "/etc/trojan/config.json" ]
CMD [ "/usr/bin/trojan", "-c", "/etc/trojan/config.json" ]