Skip to content

Commit

Permalink
feat(verible): update ubuntu docker tag to v24
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Apr 26, 2024
1 parent 268927d commit b621839
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion brittany/Dockerfile
Expand Up @@ -19,7 +19,7 @@ RUN stack install brittany
# -printf "COPY --from=builder %p %p\n"
# RUN exit 1

FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Pat Brisbin <pbrisbin@gmail.com>"
ENV DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8 LC_ALL=C.UTF-8
RUN \
Expand Down
2 changes: 1 addition & 1 deletion cabal-fmt/Dockerfile
Expand Up @@ -5,7 +5,7 @@ RUN stack upgrade
COPY stack.yaml /root/.stack/global-project/stack.yaml
RUN stack install cabal-fmt

FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Pat Brisbin <pbrisbin@gmail.com>"
ENV DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8 LC_ALL=C.UTF-8
RUN \
Expand Down
2 changes: 1 addition & 1 deletion clang-format/Dockerfile
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Pat Brisbin <pbrisbin@gmail.com>"
ENV LANG en_US.UTF-8
RUN \
Expand Down
2 changes: 1 addition & 1 deletion dfmt/Dockerfile
Expand Up @@ -15,7 +15,7 @@ RUN git reset --hard "$DFMT_VERSION"
RUN git submodule update --init
RUN make

FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Pat Brisbin <pbrisbin@gmail.com>"
ENV LANG en_US.UTF-8
COPY --from=builder /dfmt/bin/dfmt /usr/bin/dfmt
Expand Down
2 changes: 1 addition & 1 deletion fourmolu/Dockerfile
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Tristan de Cacqueray <tdecacqu@redhat.com>"
ENV DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8 LC_ALL=C.UTF-8
RUN \
Expand Down
4 changes: 2 additions & 2 deletions gn/Dockerfile
@@ -1,4 +1,4 @@
FROM ubuntu:22.04 as builder
FROM ubuntu:24.04 as builder
LABEL maintainer="Michael Spang <spang@google.com>"
ENV LANG en_US.UTF-8
RUN apt-get update && \
Expand All @@ -11,7 +11,7 @@ RUN apt-get update && \
RUN wget -q -O gn.zip https://chrome-infra-packages.appspot.com/dl/gn/gn/linux-amd64/+/Z6cz3BKAP2GgVlujo5D6CFdrLE3B1hXFwVwraB6QBnUC && \
unzip -d /usr/local/bin gn.zip gn && \
rm gn.zip
FROM ubuntu:22.04
FROM ubuntu:24.04
COPY --from=builder /usr/local/bin/gn /usr/local/bin/gn
RUN mkdir -p /code
WORKDIR /code
Expand Down
2 changes: 1 addition & 1 deletion hindent/Dockerfile
Expand Up @@ -6,7 +6,7 @@ RUN stack upgrade
COPY stack.yaml /root/.stack/global-project/stack.yaml
RUN stack install hindent

FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Pat Brisbin <pbrisbin@gmail.com>"
RUN \
apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion hlint/Dockerfile
Expand Up @@ -19,7 +19,7 @@ RUN stack install hlint apply-refact
# \) \
# -printf "COPY --from=builder %p %p\n"; exit 1

FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Pat Brisbin <pbrisbin@gmail.com>"
ENV DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8 LC_ALL=C.UTF-8
RUN \
Expand Down
4 changes: 2 additions & 2 deletions luaformatter/Dockerfile
@@ -1,5 +1,5 @@
# Based on https://github.com/ekisu/docker-luaformatter (MIT Licensed)
FROM ubuntu:22.04 AS builder
FROM ubuntu:24.04 AS builder
LABEL maintainer="Pat Brisbin <pbrisbin@restyled.io>"
ENV DEBIAN_FRONTEND noninteractive

Expand All @@ -22,7 +22,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \

RUN luarocks install --server=https://luarocks.org/dev luaformatter

FROM ubuntu:22.04
FROM ubuntu:24.04
COPY --from=builder /usr/local/bin/lua-format /usr/local/bin/lua-format
RUN mkdir -p /code
WORKDIR /code
Expand Down
2 changes: 1 addition & 1 deletion ormolu/Dockerfile
Expand Up @@ -18,7 +18,7 @@ RUN stack install ormolu
# -printf "COPY --from=builder %p %p\n"
# RUN exit 1

FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Pat Brisbin <pbrisbin@gmail.com>"
ENV DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8 LC_ALL=C.UTF-8
RUN \
Expand Down
2 changes: 1 addition & 1 deletion shellcheck/Dockerfile
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Pat Brisbin <pbrisbin@restyled.io>"
ENV DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8 LC_ALL=C.UTF-8
RUN \
Expand Down
2 changes: 1 addition & 1 deletion stylish-haskell/Dockerfile
Expand Up @@ -5,7 +5,7 @@ RUN stack upgrade
COPY stack.yaml /root/.stack/global-project/stack.yaml
RUN stack install stylish-haskell

FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Pat Brisbin <pbrisbin@gmail.com>"
ENV DEBIAN_FRONTEND=noninteractive LANG=C.UTF-8 LC_ALL=C.UTF-8
RUN \
Expand Down
2 changes: 1 addition & 1 deletion verible/Dockerfile
@@ -1,4 +1,4 @@
FROM ubuntu:22.04
FROM ubuntu:24.04
LABEL maintainer="Xan Johnson <xanjohns@gmail.com>"
ENV LANG en_US.UTF-8
#Install prerequisites
Expand Down

0 comments on commit b621839

Please sign in to comment.