Browse Source

fix: relaybaton compile

master
dnomd343 2 years ago
parent
commit
daa85e5dcf
  1. 4
      Dockerfile

4
Dockerfile

@ -311,10 +311,10 @@ RUN \
# Compile relaybaton # Compile relaybaton
FROM golang:1.14-alpine3.13 AS relaybaton FROM golang:1.14-alpine3.13 AS relaybaton
ENV RELAYBATON_VERSION="0.6.0" ENV RELAYBATON_VERSION="v0.6.0"
RUN \ RUN \
apk add build-base git perl rsync && \ apk add build-base git perl rsync && \
wget https://github.com/iyouport-org/relaybaton/archive/refs/tags/${RELAYBATON_VERSION}.tar.gz \ wget https://github.com/iyouport-org/relaybaton/archive/refs/tags/${RELAYBATON_VERSION}.tar.gz && \
tar xf ${RELAYBATON_VERSION}.tar.gz && cd ./relaybaton-*/ && \ tar xf ${RELAYBATON_VERSION}.tar.gz && cd ./relaybaton-*/ && \
make && mv ./bin/relaybaton /tmp/ make && mv ./bin/relaybaton /tmp/

Loading…
Cancel
Save