You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Default allows all binaries/commands to run!! Use a comma separated list of binaries at docker build time using ARG. Example: --build-arg "DOCKER_ALLOWED_COMMANDS=ls,ps,df"
ARG DOCKER_ALLOWED_COMMANDS=
ADD main.go Makefile /go-shell-api-docker/
WORKDIR /go-shell-api-docker/
RUN go env -w GO111MODULE=off && make build ALLOWED_COMMANDS=${DOCKER_ALLOWED_COMMANDS} && rm main.go Makefile