First of all, thanks for this helpful library.
The Dockerfile
FROM alpine
RUN echo 'a b'
is pretty printed by prettyPrint as
FROM alpine
RUN echo 'a b'
I'd expect a quoted string to be left unchanged instead of reduced to 'a b'.
This happens not only with RUN instructions (in shell form), but also with health check commands.
A minimal code example is
module Main
( main
) where
import qualified Data.Either as Either
import qualified Data.Text as T
import qualified Data.Text.IO as T.IO
import qualified Data.Text.Lazy as Lazy
import qualified Language.Docker as Docker
import Prelude (IO, ($))
main :: IO ()
main = T.IO.putStr prettyPrinted
where
prettyPrinted = Lazy.toStrict $ Docker.prettyPrint parsed
parsed = Either.fromRight [] $ Docker.parseText source
source = T.pack "FROM alpine\nRUN echo 'a b'\n"
I'm using version 9.1.1 of the library (via LTS Haskell 16.18).
First of all, thanks for this helpful library.
The Dockerfile
is pretty printed by
prettyPrintasI'd expect a quoted string to be left unchanged instead of reduced to
'a b'.This happens not only with
RUNinstructions (in shell form), but also with health check commands.A minimal code example is
I'm using version 9.1.1 of the library (via LTS Haskell 16.18).