Skip to content
Closed
Changes from all 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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN yarn install --ignore-scripts

RUN yarn build

FROM golang:1.15-alpine as go_builder
FROM golang:1.18.2-alpine as go_builder

LABEL maintainer="Sundowndev" \
org.label-schema.name="phoneinfoga" \
Expand All @@ -31,7 +31,7 @@ RUN go generate ./...

RUN go build -v -ldflags="-s -w -X 'gopkg.in/sundowndev/phoneinfoga.v2/config.Version=$(git describe --abbrev=0 --tags)' -X 'gopkg.in/sundowndev/phoneinfoga.v2/config.Commit=$(git rev-parse --short HEAD)'" -v -o phoneinfoga .

FROM golang:1.15-alpine
FROM golang:1.18.2-alpine

WORKDIR /app

Expand Down