Skip to content

Commit

Permalink
Fix lint error in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkmoore committed Sep 12, 2022
1 parent 1625750 commit 39d9de7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ RUN apt-get install -y software-properties-common && \
RUN wget https://souffle-lang.github.io/ppa/souffle-key.public -O /usr/share/keyrings/souffle-archive-keyring.gpg && \
echo "deb [signed-by=/usr/share/keyrings/souffle-archive-keyring.gpg] https://souffle-lang.github.io/ppa/ubuntu/ stable main" | tee /etc/apt/sources.list.d/souffle.list && \
apt-get update && \
apt-get install -y souffle=2.3
apt-get install -y souffle=2.3 && \
rm -rf /var/lib/apt/lists/*

RUN wget -qnc -O /tmp/mustache.zip https://github.com/quantumew/mustache-cli/releases/download/v1.0.0/mustache-cli-linux-amd64.zip && \
unzip -j -d /usr/bin /tmp/mustache.zip mustache && \
Expand Down

0 comments on commit 39d9de7

Please sign in to comment.