diff --git a/Dockerfile b/Dockerfile index 0b20ac413..ed563551b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,9 @@ FROM golang:1.23-bullseye AS base # Install core tools -RUN apt-get update &&\ - apt-get install -y curl &&\ - apt-get install -y build-essential &&\ +RUN apt-get update && \ + apt-get install -y curl && \ + apt-get install -y build-essential && \ apt-get install -y git # Build the full app binary @@ -20,4 +20,4 @@ EXPOSE 8080/tcp EXPOSE 8084/tcp WORKDIR /app COPY --from=base /app/conduit /app -CMD ["/app/conduit"] +CMD ["/app/conduit", "run"] diff --git a/README.md b/README.md index 0552947ab..557e3e11a 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ Requirements: git clone git@github.com:ConduitIO/conduit.git cd conduit make -./conduit +./conduit run ``` ### Docker