We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c127eff commit 7cf3927Copy full SHA for 7cf3927
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM ubuntu:20.04 AS build
+FROM ubuntu:22.04 AS build
2
RUN apt-get update && \
3
apt-get -y upgrade && \
4
apt-get install -y --no-install-recommends wget ca-certificates
@@ -26,7 +26,7 @@ ARG TEST="true"
26
RUN if [ "$TEST" != "false" ]; then ./validate.sh ; fi
27
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`" .
28
29
-FROM ubuntu:20.04 AS release
+FROM ubuntu:22.04 AS release
30
LABEL maintainer="[email protected]"
31
WORKDIR /usr/local/bin/
32
COPY --from=build /app/prebid-server .
0 commit comments