fix: fix tmp permissions in dockerfile

This commit is contained in:
august-alt 2023-10-04 14:37:40 +04:00
parent ec545987a2
commit 0d75f8927f

View File

@ -72,6 +72,8 @@ RUN apt-get update \
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY script/build.sh /build.sh
RUN chmod a=rwx,u+t /tmp
ARG ARCH
RUN if [ "$ARCH" = "i386" ]; then \