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 c5f77d6 commit 8cbc4dfCopy full SHA for 8cbc4df
.gitignore
@@ -0,0 +1 @@
1
+.idea/
Dockerfile
@@ -0,0 +1,15 @@
+FROM ruby:2.3
2
+
3
+# throw errors if Gemfile has been modified since Gemfile.lock
4
+RUN bundle config --global frozen 1
5
6
+WORKDIR /usr/src/app
7
8
+COPY Gemfile Gemfile.lock ./
9
+RUN bundle install
10
11
+COPY . .
12
13
+EXPOSE 4567
14
+CMD ["./regexplanet.rb"]
15
now.json
@@ -0,0 +1,4 @@
+{
+ "name": "regexplanet-ruby",
+ "alias": "regexplanet-ruby.now.sh"
+}
0 commit comments