Skip to content

Commit

Permalink
Update Docker image to Alpine 3.19
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Apr 5, 2024
1 parent 8d7836a commit 98d157b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM golang:1-alpine3.17 AS builder
FROM golang:1-alpine3.19 AS builder

RUN apk add --no-cache git ca-certificates build-base su-exec olm-dev

COPY . /build
WORKDIR /build
RUN go build -o /usr/bin/mautrix-slack

FROM alpine:3.17
FROM alpine:3.19

ENV UID=1337 \
GID=1337
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ci
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.17
FROM alpine:3.19

ENV UID=1337 \
GID=1337
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1-alpine3.17 AS builder
FROM golang:1-alpine3.19 AS builder

RUN apk add --no-cache git ca-certificates build-base su-exec olm-dev bash jq yq curl
WORKDIR /build
Expand Down

0 comments on commit 98d157b

Please sign in to comment.