Skip to content

Commit e80ff58

Browse files
committed
do not force architecture in dockerfile
1 parent 9a22312 commit e80ff58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM golang:1.19-alpine as build
1+
FROM golang:1.19.3-alpine as build
22

33
WORKDIR /go/src/github.com/marcinbudny/eventstore_exporter
44
COPY . ./
5-
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo -o app
5+
RUN CGO_ENABLED=0 GOOS=linux go build -a -tags netgo -o app
66

77
FROM alpine:latest as certs
88
RUN apk --update add ca-certificates

0 commit comments

Comments
 (0)