Skip to content

Commit

Permalink
parameterized Ubuntu version
Browse files Browse the repository at this point in the history
  • Loading branch information
dmalan committed Oct 5, 2024
1 parent 1240a23 commit 463164d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Ubuntu version
ARG RELEASE=24.04

# Build stage
FROM ubuntu:24.04 as builder
FROM ubuntu:${RELEASE} as builder


# Build-time variables
Expand Down Expand Up @@ -126,7 +129,7 @@ RUN cd /tmp && \
# Final stage
FROM ubuntu:24.04
FROM ubuntu:${RELEASE}
LABEL maintainer="[email protected]"
ARG DEBIAN_FRONTEND=noninteractive
Expand Down

0 comments on commit 463164d

Please sign in to comment.