Open
Description
🐛 Bug Description
Fail to build docker image.
Sending build context to Docker daemon 660.9MB
Step 1/5 : ARG tag
Step 2/5 : FROM gitlab/gitlab-runner-helper:${tag}
invalid reference format
To Reproduce
Steps to reproduce the behavior:
docker build -t fund_strategy .
I think problem is the Dockerfile, variable tag
is not set.
ARG tag
FROM gitlab/gitlab-runner-helper:${tag}
RUN addgroup -g 1000 -S nonroot && \
adduser -u 1000 -S nonroot -G nonroot
WORKDIR /home/Qbot
USER 1000:1000