Skip to content

Commit

Permalink
Move app to lib dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Oct 15, 2021
1 parent 9b1b67f commit 921509b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ENV GEM_HOME=${LAMBDA_TASK_ROOT}
COPY Gemfile Gemfile.lock ./
RUN bundle install

COPY app.rb .
COPY lib/ .
COPY tracks/ tracks/

CMD [ "app.Exercism::CountLinesOfCode.process" ]
2 changes: 1 addition & 1 deletion bin/run.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env ruby

require("./app")
require("./lib/app")

event = {
"track" => ARGV[0],
Expand Down
File renamed without changes.

0 comments on commit 921509b

Please sign in to comment.