Skip to content

Commit 7cf3927

Browse files
authored
Update dockerfile to use Ubuntu 22.04 as base image (prebid#4252)
1 parent c127eff commit 7cf3927

File tree

2 files changed

+1453
-1251
lines changed

2 files changed

+1453
-1251
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:20.04 AS build
1+
FROM ubuntu:22.04 AS build
22
RUN apt-get update && \
33
apt-get -y upgrade && \
44
apt-get install -y --no-install-recommends wget ca-certificates
@@ -26,7 +26,7 @@ ARG TEST="true"
2626
RUN if [ "$TEST" != "false" ]; then ./validate.sh ; fi
2727
RUN go build -mod=vendor -ldflags "-X github.com/prebid/prebid-server/v3/version.Ver=`git describe --tags | sed 's/^v//'` -X github.com/prebid/prebid-server/v3/version.Rev=`git rev-parse HEAD`" .
2828

29-
FROM ubuntu:20.04 AS release
29+
FROM ubuntu:22.04 AS release
3030
LABEL maintainer="[email protected]"
3131
WORKDIR /usr/local/bin/
3232
COPY --from=build /app/prebid-server .

0 commit comments

Comments
 (0)