Skip to content

Commit

Permalink
Fix docker image build by adding gcc as build dep (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbs2001 authored Aug 2, 2022
1 parent f35ecbc commit 53bb403
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

ARG GOVERSION=1.16
ARG GOVERSION=1.18

FROM golang:${GOVERSION}-alpine AS build
WORKDIR /go/src/cs-cloudflare-bouncer
RUN apk update && apk add --no-cache libc-dev make git
RUN apk update && apk add --no-cache libc-dev make git gcc
COPY . .
RUN make build

Expand Down

0 comments on commit 53bb403

Please sign in to comment.