1
0
Fork 0
mirror of synced 2024-06-17 14:51:09 -04:00
ovpn-admin/Dockerfile

22 lines
1.1 KiB
Docker
Raw Normal View History

FROM node:16-alpine3.15 AS frontend-builder
2020-10-15 12:12:31 -04:00
COPY frontend/ /app
2023-10-09 11:25:23 -04:00
RUN apk add --update python3 make g++ && cd /app && npm install && npm run build
2020-10-15 12:12:31 -04:00
2021-11-29 04:57:45 -05:00
FROM golang:1.17.3-buster AS backend-builder
COPY --from=frontend-builder /app/static /app/frontend/static
COPY . /app
2023-10-09 11:25:23 -04:00
ARG TARGETARCH
RUN cd /app && env CGO_ENABLED=1 GOOS=linux GOARCH=${TARGETARCH} go build -a -tags netgo -ldflags '-linkmode external -extldflags -static -s -w' -o ovpn-admin
FROM alpine:3.16
2020-10-15 12:12:31 -04:00
WORKDIR /app
2023-10-09 11:25:23 -04:00
ARG TARGETARCH
2022-12-30 09:25:21 -05:00
RUN apk add --update bash easy-rsa openssl openvpn coreutils iptables curl&& \
2020-10-15 12:12:31 -04:00
ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin && \
2023-10-09 11:25:23 -04:00
wget https://github.com/pashcovich/openvpn-user/releases/download/v1.0.9/openvpn-user-linux-${TARGETARCH}.tar.gz -O - | tar xz -C /usr/local/bin && \
2020-10-15 12:12:31 -04:00
rm -rf /tmp/* /var/tmp/* /var/cache/apk/* /var/cache/distfiles/*
2023-10-09 11:25:23 -04:00
RUN if [ -f "/usr/local/bin/openvpn-user-${TARGETARCH}" ]; then ln -s /usr/local/bin/openvpn-user-${TARGETARCH} /usr/local/bin/openvpn-user; fi
2022-12-30 09:25:21 -05:00
COPY --from=backend-builder /app/ovpn-admin /app
COPY setup/ /etc/openvpn/setup
RUN chmod +x /etc/openvpn/setup/configure.sh