Browse Source

add containerfile and makefile

master
Cyril CONSTANTIN 2 weeks ago
parent
commit
9a37a76717
  1. 10
      Makefile
  2. 2
      README.md
  3. 4
      containerfile

10
Makefile

@ -0,0 +1,10 @@
PODMAN = podman
IMAGE = debianbash
.PHONY: build run
build:
$(PODMAN) build -t $(IMAGE) .
run:
$(PODMAN) run $(IMAGE)

2
README.md

@ -1,3 +1,3 @@
# debian_podman # debian_podman
start bash in a debian from podman start bash in a debian from podman

4
containerfile

@ -0,0 +1,4 @@
FROM docker.io/library/debian:sid
LABEL maintainer="Cyril CONSTANTIN"
LABEL io.containers.capabilities="sys_chroot"
CMD ["/usr/bin/bash"]
Loading…
Cancel
Save