This repository has been archived on 2024-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
stagex/tests/python/Dockerfile

15 lines
379 B
Docker
Raw Normal View History

2023-11-15 10:24:13 +00:00
FROM ocirep/busybox as build
COPY . .
RUN set -eux; \
mkdir -p $HOME/rootfs/etc; \
echo "nogroup:*:100:nobody" > ~/rootfs/etc/group; \
echo "nobody:*:100:100:::" > ~/rootfs/etc/passwd; \
cp main.py $HOME/rootfs/
FROM scratch
COPY --from=build --chown=100:100 /home/user/rootfs /
COPY --from=ocirep/python . /
USER 100:100
ENTRYPOINT ["/usr/bin/python"]
CMD ["/main.py"]