Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump gcc version and use Alpine 3.20 base image #979

Merged
merged 6 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine3.18
FROM golang:1.23-alpine3.20

ENV XDG_CACHE_HOME='/tmp/.cache'

Expand All @@ -8,7 +8,7 @@ SHELL ["/bin/ash", "-o", "pipefail", "-c"]

RUN apk --no-cache add \
'curl=~8' \
'gcc=~12' \
'gcc=~13' \
'musl-dev=~1.2'; \
curl --silent --fail --location \
'https://raw.githubusercontent.com/cosmtrek/air/v1.44.0/install.sh' | \
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
version: "3"

services:

Expand Down
4 changes: 2 additions & 2 deletions production/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine as builder
FROM golang:1.23-alpine3.20 as builder

RUN addgroup -S urdr && getent group urdr >/tmp/group
RUN adduser -S urdr && getent passwd urdr >/tmp/passwd
Expand All @@ -8,7 +8,7 @@ WORKDIR /go
COPY ./ .

RUN apk --no-cache add \
'gcc=~12' \
'gcc=~13' \
'musl-dev=~1.2'

ENV GOPATH=$PWD
Expand Down
1 change: 0 additions & 1 deletion production/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---
version: "3"

services:

Expand Down
Loading