1 pointby Telstrom9019 hours ago1 comment
  • adastra2218 hours ago
    I'm confused--what's the security risk in building a container?
    • Telstrom9017 hours ago
      You're running untrusted code. Every RUN command in a user's Dockerfile is executed during build, which means you're executing arbitrary commands from strangers on your own infrastructure. If you're not isolating that properly, it's a security risk.
      • adastra2213 hours ago
        Inside the container though. The whole point of which is that it sandboxes and isolates the running code.