We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d97bab commit 6e25035Copy full SHA for 6e25035
Dockerfile
@@ -55,9 +55,13 @@ RUN echo "deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty main restricted
55
echo "deb http://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-backports main restricted universe multiverse" >> /etc/apt/sources.list && \
56
apt-get update -y
57
58
+# Create builds dir for CI
59
+RUN mkdir /builds && chmod 777 /builds
60
+
61
COPY ./entrypoint.sh /
62
RUN chmod 755 /entrypoint.sh
63
64
# Run as a normal user
65
USER ubuntu
66
+WORKDIR /home/ubuntu
67
ENTRYPOINT ["/entrypoint.sh"]
0 commit comments