mirror of
https://github.com/xtaci/kcptun.git
synced 2024-04-21 12:32:32 +00:00
16 lines
570 B
Docker
16 lines
570 B
Docker
FROM golang:1.21.0-alpine3.18 as builder
|
|
MAINTAINER xtaci <daniel820313@gmail.com>
|
|
ENV GO111MODULE=on
|
|
RUN apk add git
|
|
RUN git clone https://github.com/xtaci/kcptun.git
|
|
RUN cd kcptun && \
|
|
go build -mod=vendor -ldflags "-X main.VERSION=$(date -u +%Y%m%d) -s -w" -o /client github.com/xtaci/kcptun/client && \
|
|
go build -mod=vendor -ldflags "-X main.VERSION=$(date -u +%Y%m%d) -s -w" -o /server github.com/xtaci/kcptun/server
|
|
|
|
FROM alpine:3.18
|
|
RUN apk add --no-cache iptables
|
|
COPY --from=builder /client /bin
|
|
COPY --from=builder /server /bin
|
|
EXPOSE 29900/udp
|
|
EXPOSE 12948
|