You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
250 B

FROM alpine:3.17.0 AS alpine_wg
RUN apk add -U --no-cache wireguard-tools dumb-init
FROM alpine_wg AS runtime
COPY application/bin/rs-wg /usr/local/cargo/bin/rs-wg
COPY data/wg /etc/wireguard
COPY data/www /etc/www
WORKDIR /etc/wireguard
EXPOSE 8080