Skip to content

Commit

Permalink
fix: problem with Credo not being installed
Browse files Browse the repository at this point in the history
  • Loading branch information
hauleth committed Dec 15, 2019
1 parent 132d693 commit 5767166
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ RUN apk --update add git && \
rm -rf /var/lib/apt/lists/* && \
rm /var/cache/apk/*

ENV MIX_ARCHIVES /opt/archives
ENV MIX_HOME /var/mix

RUN mix do local.hex --force, \
archive.install --force github rrrene/bunt, \
archive.install --force github rrrene/credo
RUN mix local.hex --force && \
mix archive.install --force github rrrene/bunt && \
mix archive.install --force github rrrene/credo

COPY entrypoint.sh /entrypoint.sh

Expand Down
1 change: 1 addition & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ defmodule ReviewdogCredo.Mixfile do
def project do
[
app: :reviewdog_credo,
version: "0.0.1",
deps: []
]
end
Expand Down

0 comments on commit 5767166

Please sign in to comment.