Skip to content

Commit

Permalink
Move build order
Browse files Browse the repository at this point in the history
Moving the .deb addition to after we install gnupg will prevent an
extra error from appearing. See #2
  • Loading branch information
mide committed Sep 5, 2017
1 parent 34c8604 commit 4e9e866
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ FROM debian:latest

MAINTAINER Mark Ide Jr (https://www.mide.io)

RUN echo "deb http://overviewer.org/debian ./" >> /etc/apt/sources.list && \
apt-get update && \
RUN apt-get update && \
apt-get install -y wget gnupg && \
echo "deb http://overviewer.org/debian ./" >> /etc/apt/sources.list && \
wget -O - https://overviewer.org/debian/overviewer.gpg.asc | apt-key add - && \
apt-get update && \
apt-get install -y minecraft-overviewer && \
Expand Down

0 comments on commit 4e9e866

Please sign in to comment.