We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b42a07d commit ba1b3a5Copy full SHA for ba1b3a5
1 file changed
Dockerfile
@@ -0,0 +1,15 @@
1
+FROM ruby:2.5-alpine
2
+
3
+RUN apk update && apk upgrade && \
4
+ apk add --no-cache bash git openssh && \
5
+ apk add build-base gcc wget git
6
7
+RUN mkdir /opt/analyzer
8
+COPY -r . /opt/analyzer
9
+WORKDIR /opt/analyzer
10
11
+RUN git clone https://github.com/exercism/ruby-analyzer.git .
12
13
+RUN git checkout b42a07d9417e058557bff3039547f57fb87ce56e && bundle install >aa
14
15
+RUN bundle exec ruby manual_test.rb >bb
0 commit comments