Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update to Debian trixie #89

Merged
merged 2 commits into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,10 @@ linters-settings:
gocritic:
disabled-checks:
- exitAfterDefer
gofumpt:
lang-version: "1.18"

output:
format: colored-line-number
formats:
- format: colored-line-number
print-issued-lines: true
print-linter-name: true

Expand All @@ -31,7 +30,7 @@ linters:
- gocritic
- gocyclo
- godot
- goerr113
- err113
- godox
- nolintlint
- misspell
Expand All @@ -47,7 +46,6 @@ linters:
- nakedret
- prealloc
- staticcheck
- exportloopref
- stylecheck
- typecheck
- unconvert
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM golang:1.20-bullseye as builder
FROM golang:1.20-bullseye AS builder

RUN mkdir /build
ADD . /build/
WORKDIR /build

RUN make build

FROM node:slim as ui-builder
FROM node:slim AS ui-builder

RUN mkdir /build
WORKDIR /build
Expand All @@ -17,7 +17,7 @@ RUN npm ci --prefix ui/
ADD . /build/
RUN npm run build --prefix ui/

FROM debian:bookworm-slim
FROM debian:trixie-slim
RUN apt-get update \
&& apt-get -y install curl gnupg2 git podman dumb-init \
&& rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.8'

services:
db:
image: postgres:13.3
Expand Down