We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
reconmapd is trying to call /bin/bash when invoking the interactive terminal, however the current Docker image build doesn't have bash installed.
reconmapd
/bin/bash
The text was updated successfully, but these errors were encountered:
I have the same issue. My temporary solution is to clone the agent Repo and modify the Dockerfile as follows:
FROM golang:1.17-bullseye WORKDIR /build COPY go.mod go.sum ./ COPY cmd/ ./cmd/ COPY internal/ ./internal/ ENV CGO_ENABLED=0 RUN go build -o /build/reconmapd ./cmd/reconmapd WORKDIR /app RUN cp /build/reconmapd /app/reconmapd EXPOSE 2020 CMD ["/app/reconmapd"]
As you can see I removed the multi stage build and changed the base image. This results in a much bigger image but it works for now.
Edit: You can build the modified image by running
make docker-build
Sorry, something went wrong.
santiagolizardo
No branches or pull requests
reconmapd
is trying to call/bin/bash
when invoking the interactive terminal, however the current Docker image build doesn't have bash installed.The text was updated successfully, but these errors were encountered: