diff --git a/hostile/1.1.0/Dockerfile b/hostile/1.1.0/Dockerfile index 044af930b..d3ecf6415 100644 --- a/hostile/1.1.0/Dockerfile +++ b/hostile/1.1.0/Dockerfile @@ -3,7 +3,7 @@ ARG HOSTILE_VER="1.1.0" ARG BOWTIE2_VER="2.5.1" # Stage 1: Build Dockerfile -FROM ubuntu:focal AS builder +FROM ubuntu:jammy AS builder ARG HOSTILE_VER RUN apt-get update && apt-get install -y --no-install-recommends \ @@ -36,7 +36,7 @@ RUN wget https://github.com/bede/hostile/archive/refs/tags/${HOSTILE_VER}.tar.gz # Stage 2: Final image -FROM ubuntu:focal AS app +FROM ubuntu:jammy AS app LABEL base.image="ubuntu:focal" LABEL dockerfile.version="1"