I'm working on a dockerfile for the meganz cmd utility.
I have set environment variables for the login command and it works as intended on my private builds, with a legit username and password.
I am making a public build using dockerhub and I populate the environment variables with default values and it causes the automatic build to fail in DockerHub.
Is it possible to ignore this specific error during the build so it passes? I fully expect this command to fail with default credentials.
RUN mega-login ${email} ${password}
The command '/bin/sh -c mega-login ${email} ${password}' returned a non-zero code: 13