Skip to content

Commit

Permalink
Update Docker image to Alpine 3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Jun 26, 2023
1 parent 2c53b2f commit 7f78450
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.18 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-whatsapp

FROM alpine:3.17
FROM alpine:3.18

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.18

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
FROM golang:1-alpine3.18

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

Expand Down

0 comments on commit 7f78450

Please sign in to comment.