Skip to content

Commit 928f49b

Browse files
committedFeb 23, 2016
Updated Dockerfile for Ubuntu to include compiler.
[ci skip]
1 parent ce4e526 commit 928f49b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
 

Diff for: ‎scripts/deploy.sh

+6-4
Original file line numberDiff line numberDiff line change
@@ -271,10 +271,12 @@ function rbx_deploy_docker_release {
271271
cat > "$file" <<EOF
272272
FROM ubuntu:$path
273273
274-
RUN apt-get update && apt-get install -y \
275-
bzip2 \
276-
libyaml-0-2 \
277-
libssl1.0.0
274+
RUN apt-get update && apt-get install -y \\
275+
bzip2 \\
276+
libyaml-0-2 \\
277+
libssl1.0.0 \\
278+
clang-3.4 \\
279+
make
278280
279281
ADD https://rubinius-binaries-rubinius-com.s3-us-west-2.amazonaws.com/ubuntu/$path/x86_64/$release /tmp/rubinius.tar.bz2
280282
RUN cd /opt && tar xvjf /tmp/rubinius.tar.bz2

0 commit comments

Comments
 (0)
Please sign in to comment.