Last active 1746277176

Revision 672c0d5c745fdc7e837d51ce6f805bccc8188a84

Containerfile Raw
1FROM ghcr.io/skunkwerks/freebsd-runtime:14.2
2RUN env ASSUME_ALWAYS_YES=yes pkg bootstrap -qr FreeBSD
3RUN pkg update -q
4RUN pkg install -qy FreeBSD-openssl
5RUN pkg upgrade -qy
6RUN pkg install -qy lang/python3
7entrypoint /usr/local/bin/python3 -m http.server
_README.md Raw
# podman build --no-hosts -t localhost/test .
STEP 1/7: FROM ghcr.io/skunkwerks/freebsd-runtime:14.2
STEP 2/7: RUN env ASSUME_ALWAYS_YES=yes pkg bootstrap -r FreeBSD
[6d6d157ed608] Installing pkg-2.1.0...
[6d6d157ed608] Extracting pkg-2.1.0: .......... done
Bootstrapping pkg from pkg+https://pkg.FreeBSD.org/FreeBSD:14:amd64/quarterly, please wait...
Verifying signature with trusted certificate pkg.freebsd.org.2013102301... done
...
STEP 7/7: entrypoint /usr/local/bin/python3 -m http.server
COMMIT localhost/test
--> 74e7b7da6017
Successfully tagged localhost/test:latest
74e7b7da6017ab882ec71077b62bae3ee89b5d9ce402c68eaffb2b9bc6e33f4f
# podman run -it --rm localhost/test:latest
Serving HTTP on :: port 8000 (http://[::]:8000/) ...
^c