Skip to content

Commit

Permalink
fix: fix LegacyKeyValueFormat checks in docker files
Browse files Browse the repository at this point in the history
  • Loading branch information
Totto16 committed Dec 17, 2024
1 parent e75a832 commit e462b9e
Show file tree
Hide file tree
Showing 18 changed files with 36 additions and 36 deletions.
4 changes: 2 additions & 2 deletions 9.0/buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM buildpack-deps:buster

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# additional haskell specific deps
RUN apt-get update && \
Expand Down Expand Up @@ -132,6 +132,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.0/slim-buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:buster-slim

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -148,6 +148,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.10/bullseye/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:bullseye

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -129,6 +129,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.10/buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:buster

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -129,6 +129,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.10/slim-bullseye/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:bullseye-slim

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -129,6 +129,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.10/slim-buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:buster-slim

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -131,6 +131,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.2/buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM buildpack-deps:buster

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# additional haskell specific deps
RUN apt-get update && \
Expand Down Expand Up @@ -115,6 +115,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.2/slim-buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:buster-slim

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -131,6 +131,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.4/buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM buildpack-deps:buster

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# additional haskell specific deps
RUN apt-get update && \
Expand Down Expand Up @@ -115,6 +115,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.4/slim-buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:buster-slim

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -131,6 +131,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.6/bullseye/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:bullseye

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -132,6 +132,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.6/buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM buildpack-deps:buster

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# additional haskell specific deps
RUN apt-get update && \
Expand Down Expand Up @@ -115,6 +115,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.6/slim-bullseye/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:bullseye-slim

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -134,6 +134,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.6/slim-buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:buster-slim

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -131,6 +131,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.8/bullseye/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:bullseye

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -129,6 +129,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.8/buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM buildpack-deps:buster

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# additional haskell specific deps
RUN apt-get update && \
Expand Down Expand Up @@ -115,6 +115,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.8/slim-bullseye/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:bullseye-slim

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -129,6 +129,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]
4 changes: 2 additions & 2 deletions 9.8/slim-buster/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:buster-slim

ENV LANG C.UTF-8
ENV LANG=C.UTF-8

# common haskell + stack dependencies
RUN apt-get update && \
Expand Down Expand Up @@ -131,6 +131,6 @@ RUN set -eux; \
\
"/opt/ghc/$GHC/bin/ghc" --version

ENV PATH /root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH
ENV PATH=/root/.cabal/bin:/root/.local/bin:/opt/ghc/${GHC}/bin:$PATH

CMD ["ghci"]

0 comments on commit e462b9e

Please sign in to comment.