Compare commits

...

4 Commits

Author SHA1 Message Date
dependabot[bot]
52fc8df716
Merge fde4bed8aa49c2d0e06652047894119aa6c43d89 into d22a9ed5c9f89d5a6c48946891ac282f3711fb80 2025-12-08 12:10:27 +00:00
dependabot[bot]
d22a9ed5c9
Bump alpine from 3.22 to 3.23 (#414)
Bumps alpine from 3.22 to 3.23.

---
updated-dependencies:
- dependency-name: alpine
  dependency-version: '3.23'
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-08 12:10:22 +00:00
dependabot[bot]
80f8752c93
Bump docker/metadata-action from 5.9.0 to 5.10.0 (#413)
Bumps [docker/metadata-action](https://github.com/docker/metadata-action) from 5.9.0 to 5.10.0.
- [Release notes](https://github.com/docker/metadata-action/releases)
- [Commits](https://github.com/docker/metadata-action/compare/v5.9.0...v5.10.0)

---
updated-dependencies:
- dependency-name: docker/metadata-action
  dependency-version: 5.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-01 02:55:45 +00:00
dependabot[bot]
fde4bed8aa
Bump node from 16-alpine3.15 to 19-alpine3.15
Bumps node from 16-alpine3.15 to 19-alpine3.15.

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-03-23 07:35:57 +00:00
3 changed files with 4 additions and 4 deletions

View File

@ -38,7 +38,7 @@ jobs:
run: werf cr login -u ${{ github.actor }} -p ${{ github.token }} ghcr.io/${{ github.repository }}
- name: Extract Docker metadata
uses: docker/metadata-action@v5.9.0
uses: docker/metadata-action@v5.10.0
with:
images: ghcr.io/${{ github.repository }}/${{ matrix.name }}

View File

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

View File

@ -1,4 +1,4 @@
FROM node:16-alpine3.15 AS frontend-builder
FROM node:19-alpine3.15 AS frontend-builder
COPY ../frontend /app
RUN apk add --update python3 make g++ && cd /app && npm install && npm run build
@ -9,7 +9,7 @@ COPY .. /app
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
FROM alpine:3.22
FROM alpine:3.23
WORKDIR /app
COPY --from=backend-builder /app/ovpn-admin /app
ARG TARGETARCH