Skip to content

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Pandademic committed Aug 7, 2021
1 parent 7945643 commit 00134b7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 36 deletions.
3 changes: 2 additions & 1 deletion .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ github:
# add a "Review in Gitpod" button to pull requests (defaults to false)
addBadge: false
# add a label once the prebuild is ready to pull requests (defaults to false)
addLabel: prebuilt-in-gitpod
addLabel: prebuilt-in-gitpod,WIP

14 changes: 11 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.5
FROM ruby:2.5 as DEPS
COPY . .
WORKDIR /
RUN gem install down:5.0
Expand All @@ -7,6 +7,14 @@ RUN gem install file-utils
WORKDIR /
RUN gem install rubocop
WORKDIR /
FROM ruby:2.5 as Linter
WORKDIR /
COPY . .
RUN rubocop -A
RUN echo "testing help"
RUN ruby core/latte.rb help
FROM ubuntu:latest as Ubuntu
WORKDIR /
COPY . .
RUN sudo apt install ruby-full
RUN ruby --version
RUN bundle install
CMD [ "ruby","core/latte.rb help" ]
32 changes: 0 additions & 32 deletions main.rb

This file was deleted.

0 comments on commit 00134b7

Please sign in to comment.