We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 97d5916 + a2f1475 commit 48afc6fCopy full SHA for 48afc6f
4 files changed
builder/Dockerfile
@@ -23,6 +23,9 @@ RUN apt-get update && apt-get install -yq \
23
aufs-tools iptables lxc \
24
lxc-docker-1.2.0
25
26
+# install jq for parsing json
27
+RUN curl http://stedolan.github.io/jq/download/linux64/jq > /usr/bin/jq && chmod 755 /usr/bin/jq
28
+
29
# configure ssh server
30
RUN rm /etc/ssh/ssh_host_*
31
RUN dpkg-reconfigure openssh-server
@@ -60,9 +63,9 @@ WORKDIR /app
60
63
ENTRYPOINT ["/app/bin/entry"]
61
64
CMD ["/app/bin/boot"]
62
65
EXPOSE 22
-
66
RUN addgroup --quiet --gid 2000 slug && useradd slug --uid=2000 --gid=2000
67
68
+ADD templates/shim.dockerfile /home/git/
69
ADD . /app
70
ADD sshd_config /etc/ssh/sshd_config
71
RUN chown -R root:root /app
0 commit comments