mirror of
https://github.com/Cian-H/pinp_test.git
synced 2025-12-22 20:21:58 +00:00
12 lines
296 B
Docker
12 lines
296 B
Docker
FROM docker.io/opensuse/leap:latest
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
COPY ./inner/ /inner/
|
|
COPY ./storage.conf /etc/containers/storage.conf
|
|
|
|
RUN zypper --non-interactive refresh && \
|
|
zypper --non-interactive install podman runc && \
|
|
chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT /entrypoint.sh
|