We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 700ec9f commit d25f814Copy full SHA for d25f814
Dockerfile
@@ -1,12 +1,12 @@
1
-FROM golang:1.20-bullseye as builder
+FROM golang:1.20-bullseye AS builder
2
3
RUN mkdir /build
4
ADD . /build/
5
WORKDIR /build
6
7
RUN make build
8
9
-FROM node:slim as ui-builder
+FROM node:slim AS ui-builder
10
11
12
@@ -17,7 +17,7 @@ RUN npm ci --prefix ui/
17
18
RUN npm run build --prefix ui/
19
20
-FROM debian:bookworm-slim
+FROM debian:trixie-slim
21
RUN apt-get update \
22
&& apt-get -y install curl gnupg2 git podman dumb-init \
23
&& rm -rf /var/lib/apt/lists/*
docker-compose.yml
@@ -1,5 +1,3 @@
-version: '3.8'
-
services:
db:
image: postgres:13.3
0 commit comments