Skip to content

Commit

Permalink
Dockerfile: ubuntu version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
g3rhard authored Dec 20, 2023
1 parent 37bc00b commit a92a8df
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
FROM ubuntu:jammy-20230804
# syntax=docker/dockerfile:1.4
ARG UBUNTU_VERSION="jammy-20231211.1"

FROM ubuntu:${UBUNTU_VERSION}

RUN apt-get update && apt-get install -yqq --no-install-recommends \
curl bash git ca-certificates
curl bash git ca-certificates \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN curl https://get.trunk.io -fsSL | bash -s -- -y

0 comments on commit a92a8df

Please sign in to comment.