Add bash to Dockerfile

This commit is contained in:
Prathamesh Musale 2023-10-12 16:07:12 +05:30
parent 578535888e
commit 5e949cc3d6

View File

@ -28,6 +28,8 @@ RUN GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -
# app container # app container
FROM alpine FROM alpine
RUN apk --update --no-cache add bash jq curl
ARG USER="vdm" ARG USER="vdm"
ARG CONFIG_FILE="./environments/example.toml" ARG CONFIG_FILE="./environments/example.toml"