1
0
Fork 0
mirror of https://github.com/ArtemSBulgakov/buildozer-action.git synced 2024-08-16 10:09:52 +02:00

Remove warnings related to sudo

This commit is contained in:
Artem Bulgakov 2020-06-23 15:01:41 +03:00
parent 283f634c08
commit b6cdef4bce

View file

@ -1,6 +1,11 @@
FROM kivy/buildozer:latest
# See https://github.com/kivy/buildozer/blob/master/Dockerfile
# Remove a lot of warnings
# sudo: setrlimit(RLIMIT_CORE): Operation not permitted
# See https://github.com/sudo-project/sudo/issues/42
RUN echo "Set disable_coredump false" | sudo tee -a /etc/sudo.conf > /dev/null
COPY entrypoint.sh /action/entrypoint.sh
ENTRYPOINT ["/action/entrypoint.sh"]