Skip to content

Commit

Permalink
ci: add compose app and dockerifle for licensed
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Kottler committed May 18, 2021
1 parent 2bbb4dd commit 1e60e0e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,12 @@ services:
volumes:
- .:/work
working_dir: /work

licensing:
build:
context: ./docker
dockerfile: Dockerfile.licensed

volumes:
- .:/work
working_dir: /work
9 changes: 9 additions & 0 deletions docker/Dockerfile.licensed
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM ruby:2.7-slim-buster

WORKDIR /app

RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y cmake pkg-config git-core libgit2-dev
RUN gem install licensed

ENTRYPOINT ["licensed"]

0 comments on commit 1e60e0e

Please sign in to comment.