1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-06-27 16:36:00 +00:00
miniflux-v2/packaging/debian/Dockerfile
dependabot[bot] f7e30822c3 build(deps): bump golang in /packaging/debian
Bumps golang from 1.23-bookworm to 1.24-bookworm.

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

Signed-off-by: dependabot[bot] <support@github.com>
2025-02-18 19:39:27 -08:00

11 lines
265 B
Docker

FROM docker.io/golang:1.24-bookworm AS build
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -q && \
apt-get install -y -qq build-essential devscripts dh-make debhelper && \
mkdir -p /build/debian
ADD . /src
CMD ["/src/packaging/debian/build.sh"]