mirror of
https://github.com/Cian-H/pinp_test.git
synced 2026-02-20 15:28:14 +00:00
12 lines
310 B
Docker
12 lines
310 B
Docker
FROM docker.io/library/alpine:latest
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
COPY ./inner/ /inner/
|
|
|
|
RUN apk update && \
|
|
apk add iptables openrc podman podman-openrc runc && \
|
|
printf "[storage]\ndriver = \"vfs\"\n" > /etc/containers/storage.conf && \
|
|
chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT /entrypoint.sh
|