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
Because the base image for the Dockerfile is on docker.io, we run into rate-limiting issues when using this action across our organization. We have locally-hosted runners.
Adding a build argument for the base image would allow us to use a pull-through cache to avoid the rate-limits.
ARG BASE_IMAGE=alpine
FROM ${BASE_IMAGE}:3.20.0
The text was updated successfully, but these errors were encountered:
Because the base image for the Dockerfile is on
docker.io
, we run into rate-limiting issues when using this action across our organization. We have locally-hosted runners.Adding a build argument for the base image would allow us to use a pull-through cache to avoid the rate-limits.
The text was updated successfully, but these errors were encountered: