Add write permissions to /go/pkg

This commit is contained in:
Chuck Lantz
2020-02-04 19:30:29 +00:00
parent b51038c588
commit d630f10d45

View File

@@ -67,6 +67,8 @@ RUN apt-get update \
&& apt-get install -y sudo \
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
&& chmod 0440 /etc/sudoers.d/$USERNAME \
# Add write permission for /go/pkg
&& chmod -R a+w /go/pkg \
#
# Clean up
&& apt-get autoremove -y \