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
The current Dockerfile includes a COPY step on line 5.
By copying installer binaries using this method, the binary adds several unnecessary GB to the final image. Consider other approaches using RUN instead of COPY. Within a single RUN step,
Download the installer binary from a company web server. Perform installation. Delete the binary.
BuildKit for Windows is now in early release. I haven't used it and can't comment on stability or ease of use. But eventually this should become the preferred approach.
The text was updated successfully, but these errors were encountered:
The current Dockerfile includes a COPY step on line 5.
By copying installer binaries using this method, the binary adds several unnecessary GB to the final image. Consider other approaches using RUN instead of COPY. Within a single RUN step,
The text was updated successfully, but these errors were encountered: