Last active
June 4, 2026 02:48
-
-
Save gaffneyc/a08e1dcc615228db9d5b927d67df8eb0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM debian:stable | |
| # Copy /usr/bin/dms from our image on Docker hub. Currently linux amd64 | |
| # and arm64 images are available. Docker will cache the image so you | |
| # will need to pull to get the latest version (`docker build --pull` will work too) | |
| COPY --from=docker.io/deadmanssnitch/field-agent:latest /usr/bin/dms /usr/bin/dms | |
| # Shorter version if you're using Docker or have an alias configured for Podman. | |
| # COPY --from=deadmanssnitch/field-agent:latest /usr/bin/dms /usr/bin/dms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment