Skip to content

Commit

Permalink
chore: update to Debian trixie (#89)
Browse files Browse the repository at this point in the history
Co-authored-by: raphaelcoeffic <1050031+raphaelcoeffic@users.noreply.github.com>
  • Loading branch information
raphaelcoeffic and raphaelcoeffic authored Feb 17, 2025
1 parent 700ec9f commit 8dd6988
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
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

0 comments on commit 8dd6988

Please sign in to comment.