Skip to content

Commit 8dd6988

Browse files
chore: update to Debian trixie (#89)
Co-authored-by: raphaelcoeffic <[email protected]>
1 parent 700ec9f commit 8dd6988

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

.golangci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ linters-settings:
55
gocritic:
66
disabled-checks:
77
- exitAfterDefer
8-
gofumpt:
9-
lang-version: "1.18"
108

119
output:
12-
format: colored-line-number
10+
formats:
11+
- format: colored-line-number
1312
print-issued-lines: true
1413
print-linter-name: true
1514

@@ -31,7 +30,7 @@ linters:
3130
- gocritic
3231
- gocyclo
3332
- godot
34-
- goerr113
33+
- err113
3534
- godox
3635
- nolintlint
3736
- misspell
@@ -47,7 +46,6 @@ linters:
4746
- nakedret
4847
- prealloc
4948
- staticcheck
50-
- exportloopref
5149
- stylecheck
5250
- typecheck
5351
- unconvert

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM golang:1.20-bullseye as builder
1+
FROM golang:1.20-bullseye AS builder
22

33
RUN mkdir /build
44
ADD . /build/
55
WORKDIR /build
66

77
RUN make build
88

9-
FROM node:slim as ui-builder
9+
FROM node:slim AS ui-builder
1010

1111
RUN mkdir /build
1212
WORKDIR /build
@@ -17,7 +17,7 @@ RUN npm ci --prefix ui/
1717
ADD . /build/
1818
RUN npm run build --prefix ui/
1919

20-
FROM debian:bookworm-slim
20+
FROM debian:trixie-slim
2121
RUN apt-get update \
2222
&& apt-get -y install curl gnupg2 git podman dumb-init \
2323
&& rm -rf /var/lib/apt/lists/*

docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3.8'
2-
31
services:
42
db:
53
image: postgres:13.3

0 commit comments

Comments
 (0)