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 d87d2d2 commit 99badd9Copy full SHA for 99badd9
server/Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.19 AS build
+FROM golang:1.23 AS build
2
ARG TAG=release
3
ARG REV
4
ARG VERSION
@@ -13,7 +13,7 @@ COPY internal/ /app/internal/
13
14
RUN CGO_ENABLED=0 go build -tags "${TAG}" "-ldflags=-X main.version=${VERSION} -s -w -buildid=" -trimpath ./cmd/reearth-marketplace
15
16
-FROM debian:buster
+FROM debian:bookworm
17
18
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
19
COPY --from=build /app/reearth-marketplace /app/reearth-marketplace
web/Dockerfile
-FROM node:22.1-slim AS node
+FROM node:22.11.0-slim AS node
WORKDIR /work
RUN --mount=type=bind,source=package.json,target=package.json \
0 commit comments