mirror of
https://github.com/dndx/phantun.git
synced 2025-04-05 19:49:29 +08:00
docker: copy source from context
This commit is contained in:
parent
58550c18dc
commit
a2d5cb5f03
@ -7,12 +7,11 @@
|
|||||||
#
|
#
|
||||||
FROM rust:alpine AS builder
|
FROM rust:alpine AS builder
|
||||||
|
|
||||||
ARG VERSION=v0.6.0
|
COPY . /phantun
|
||||||
|
|
||||||
RUN apk update \
|
RUN apk update \
|
||||||
&& apk add --no-cache --virtual .build-deps git musl-dev \
|
&& apk add --no-cache --virtual .build-deps musl-dev \
|
||||||
&& git clone https://github.com/dndx/phantun.git --branch $VERSION \
|
|
||||||
&& cd phantun \
|
&& cd phantun \
|
||||||
&& git checkout $VERSION \
|
|
||||||
&& cargo build --release \
|
&& cargo build --release \
|
||||||
&& strip target/release/server target/release/client \
|
&& strip target/release/server target/release/client \
|
||||||
&& install target/release/server /usr/local/bin/phantun-server \
|
&& install target/release/server /usr/local/bin/phantun-server \
|
||||||
@ -26,7 +25,6 @@ RUN apk update \
|
|||||||
# Runtime stage
|
# Runtime stage
|
||||||
#
|
#
|
||||||
FROM alpine:3.16
|
FROM alpine:3.16
|
||||||
LABEL maintainer="pexcn <i@pexcn.me>"
|
|
||||||
|
|
||||||
RUN apk update \
|
RUN apk update \
|
||||||
&& apk add --no-cache iptables ip6tables tzdata \
|
&& apk add --no-cache iptables ip6tables tzdata \
|
||||||
|
@ -2,7 +2,7 @@ version: '3.9'
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
phantun-server:
|
phantun-server:
|
||||||
image: pexcn/docker-images:phantun
|
image: phantun
|
||||||
container_name: phantun-server
|
container_name: phantun-server
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
network_mode: host
|
network_mode: host
|
||||||
@ -14,7 +14,7 @@ services:
|
|||||||
phantun-server --local 1985 --remote 127.0.0.1:1984 --ipv4-only
|
phantun-server --local 1985 --remote 127.0.0.1:1984 --ipv4-only
|
||||||
|
|
||||||
phantun-client:
|
phantun-client:
|
||||||
image: pexcn/docker-images:phantun
|
image: phantun
|
||||||
container_name: phantun-client
|
container_name: phantun-client
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
network_mode: host
|
network_mode: host
|
||||||
|
Loading…
x
Reference in New Issue
Block a user