File tree Expand file tree Collapse file tree 3 files changed +6
-10
lines changed
Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,10 @@ linters-settings:
55 gocritic :
66 disabled-checks :
77 - exitAfterDefer
8- gofumpt :
9- lang-version : " 1.18"
108
119output :
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
Original file line number Diff line number Diff line change 1- FROM golang:1.20-bullseye as builder
1+ FROM golang:1.20-bullseye AS builder
22
33RUN mkdir /build
44ADD . /build/
55WORKDIR /build
66
77RUN make build
88
9- FROM node:slim as ui-builder
9+ FROM node:slim AS ui-builder
1010
1111RUN mkdir /build
1212WORKDIR /build
@@ -17,7 +17,7 @@ RUN npm ci --prefix ui/
1717ADD . /build/
1818RUN npm run build --prefix ui/
1919
20- FROM debian:bookworm -slim
20+ FROM debian:trixie -slim
2121RUN apt-get update \
2222 && apt-get -y install curl gnupg2 git podman dumb-init \
2323 && rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 1- version : ' 3.8'
2-
31services :
42 db :
53 image : postgres:13.3
You can’t perform that action at this time.
0 commit comments