Skip to content

Commit

Permalink
build: explicitly use alpine 3.18 (#6404)
Browse files Browse the repository at this point in the history
Temporary fix for mattn/go-sqlite3#1177 which will be reverted in the near future as that's merged.

Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
  • Loading branch information
james-d-elliott committed Dec 11, 2023
1 parent 19c5d24 commit 0bea528
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.coverage
Expand Up @@ -15,7 +15,7 @@ RUN yarn global add pnpm && \
# =======================================
# ===== Build image for the backend =====
# =======================================
FROM golang:1.21.5-alpine AS builder-backend
FROM golang:1.21.5-alpine3.18 AS builder-backend

WORKDIR /go/src/app

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Expand Up @@ -13,7 +13,7 @@ RUN yarn install --frozen-lockfile && yarn build
# =======================================
# ===== Build image for the backend =====
# =======================================
FROM golang:1.21.5-alpine AS builder-backend
FROM golang:1.21.5-alpine3.18 AS builder-backend

WORKDIR /go/src/app

Expand Down
@@ -1,4 +1,4 @@
FROM golang:1.21.5-alpine
FROM golang:1.21.5-alpine3.18

ARG USER_ID
ARG GROUP_ID
Expand Down

0 comments on commit 0bea528

Please sign in to comment.