diff --git a/docker/Dockerfile b/docker/Dockerfile index 88432cf..653d693 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -7,12 +7,11 @@ # FROM rust:alpine AS builder -ARG VERSION=v0.6.0 +COPY . /phantun + RUN apk update \ - && apk add --no-cache --virtual .build-deps git musl-dev \ - && git clone https://github.com/dndx/phantun.git --branch $VERSION \ + && apk add --no-cache --virtual .build-deps musl-dev \ && cd phantun \ - && git checkout $VERSION \ && cargo build --release \ && strip target/release/server target/release/client \ && install target/release/server /usr/local/bin/phantun-server \ @@ -26,7 +25,6 @@ RUN apk update \ # Runtime stage # FROM alpine:3.16 -LABEL maintainer="pexcn " RUN apk update \ && apk add --no-cache iptables ip6tables tzdata \ diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 204f6e5..187c76b 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.9' services: phantun-server: - image: pexcn/docker-images:phantun + image: phantun container_name: phantun-server restart: unless-stopped network_mode: host @@ -14,7 +14,7 @@ services: phantun-server --local 1985 --remote 127.0.0.1:1984 --ipv4-only phantun-client: - image: pexcn/docker-images:phantun + image: phantun container_name: phantun-client restart: unless-stopped network_mode: host