mogoh@lemmy.ml to Programmer Humor@lemmy.ml · 3 months agoDocker Buildinglemmy.mlexternal-linkmessage-square34fedilinkarrow-up1273arrow-down18cross-posted to: programmer_humor@programming.dev
arrow-up1265arrow-down1external-linkDocker Buildinglemmy.mlmogoh@lemmy.ml to Programmer Humor@lemmy.ml · 3 months agomessage-square34fedilinkcross-posted to: programmer_humor@programming.dev
minus-squaredavel@lemmy.mllinkfedilinkEnglisharrow-up15·3 months agoTrue. Nothing beats running your unit tests in the actual container image that will be run in production.
minus-squareHiddenLayer555@lemmy.mllinkfedilinkEnglisharrow-up7·edit-23 months agoRace condition that only happens on the much faster production hardware: Allow me to introduce myself
minus-squaredavel@lemmy.mllinkfedilinkEnglisharrow-up5·3 months agoUnit tests can’t win ’em all. That’s where things like integration tests, staging environments, and load testing come in. The final layer of protection is the deployment strategy, be it rolling, canary, or blue-geen.
minus-squareQaz@lemmy.mllinkfedilinkEnglisharrow-up2·3 months agoOr an issue that only appears when using ARM and not on my AMD64 dev machine
minus-squareqaz@lemmy.worldlinkfedilinkEnglisharrow-up6·3 months agoYeah, and it’s useful to just check everything so you don’t forget to add some essential system package for e.g. SSL, especially when working with Alpine.
minus-squareBjörn Tantau@swg-empire.delinkfedilinkarrow-up6·3 months agoI mean, isn’t that kind of the point of containers? To basically have the same environment everywhere.
True. Nothing beats running your unit tests in the actual container image that will be run in production.
Race condition that only happens on the much faster production hardware: Allow me to introduce myself
Unit tests can’t win ’em all. That’s where things like integration tests, staging environments, and load testing come in.
The final layer of protection is the deployment strategy, be it rolling, canary, or blue-geen.
Or an issue that only appears when using ARM and not on my AMD64 dev machine
Yeah, and it’s useful to just check everything so you don’t forget to add some essential system package for e.g. SSL, especially when working with Alpine.
I mean, isn’t that kind of the point of containers? To basically have the same environment everywhere.