Use ubuntu as the base image instead of debian

This commit is contained in:
Foster Hangdaan 2023-10-20 08:52:33 -04:00
parent d971b751b2
commit 0c64919245
Signed by: foster
GPG key ID: E48D7F49A852F112

View file

@ -14,7 +14,7 @@
# Download, verify and unpack stage
FROM docker.io/library/debian:12 as downloader
FROM docker.io/library/ubuntu:22.04 as downloader
RUN apt-get update -y \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y curl gnupg git \
@ -41,7 +41,7 @@ RUN set -ex \
# Runtime stage
FROM docker.io/library/debian:12-slim
FROM docker.io/library/ubuntu:22.04
LABEL maintainer="Foster Hangdaan <foster@hangdaan.email>"