Compare commits

...

3 Commits

Author SHA1 Message Date
Konstantin Nezhbert
36b9ff2887
Merge 5dd44dad7f208f4e4035daacae33ff2bde7d70dc into a7aab7cb6ae42c58b9b21fd0659c58cbaa68ce2f 2024-11-21 15:01:57 +00:00
Dmitry Shurupov
a7aab7cb6a
docs: Fixing authors' links in README
Signed-off-by: Dmitry Shurupov <dmitry.shurupov@palark.com>
2024-11-14 15:48:12 +07:00
Zhbert
5dd44dad7f
Update alpine version 2024-05-02 16:34:15 +03:00
3 changed files with 6 additions and 6 deletions

View File

@ -9,7 +9,7 @@ COPY . /app
ARG TARGETARCH ARG TARGETARCH
RUN cd /app && packr2 && env CGO_ENABLED=1 GOOS=linux GOARCH=${TARGETARCH} go build -a -tags netgo -ldflags '-linkmode external -extldflags -static -s -w' -o ovpn-admin && packr2 clean RUN cd /app && packr2 && env CGO_ENABLED=1 GOOS=linux GOARCH=${TARGETARCH} go build -a -tags netgo -ldflags '-linkmode external -extldflags -static -s -w' -o ovpn-admin && packr2 clean
FROM alpine:3.16 FROM alpine:3.19
WORKDIR /app WORKDIR /app
COPY --from=backend-builder /app/ovpn-admin /app COPY --from=backend-builder /app/ovpn-admin /app
ARG TARGETARCH ARG TARGETARCH

View File

@ -1,4 +1,4 @@
FROM alpine:3.16 FROM alpine:3.19
ARG TARGETARCH ARG TARGETARCH
RUN apk add --update bash openvpn easy-rsa iptables && \ RUN apk add --update bash openvpn easy-rsa iptables && \
ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin && \ ln -s /usr/share/easy-rsa/easyrsa /usr/local/bin && \

View File

@ -175,6 +175,6 @@ Flags:
ovpn-admin was originally created in [Flant](https://github.com/flant/) and used internally for years. ovpn-admin was originally created in [Flant](https://github.com/flant/) and used internally for years.
In March 2021, it [went public](https://medium.com/flant-com/introducing-ovpn-admin-a-web-interface-to-manage-openvpn-users-d81705ad8f23) and was still developed in Flant. In March 2021, it [went public](https://medium.com/flant-com/introducing-ovpn-admin-a-web-interface-to-manage-openvpn-users-d81705ad8f23) and was still developed in Flant.
Namely, @vitaliy-sn created its first version in Python, and @pashcovich rewrote it in Go. Namely, [@vitaliy-sn](https://github.com/vitaliy-sn) created its first version in Python, and [@pashcovich](https://github.com/pashcovich) rewrote it in Go.
In November 2024, this project was moved to Palark, which is currently responsible for its maintenance and development. In November 2024, this project was moved to [Palark](https://github.com/palark/), which is currently responsible for its maintenance and development.