Skip to content

Commit

Permalink
fixes dockerfile missing libraries (Thanks @bnewbold for the patch) #27
Browse files Browse the repository at this point in the history
  • Loading branch information
lfoppiano committed Jun 6, 2019
1 parent aed698b commit 69b6355
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 @@ -26,12 +26,12 @@ RUN cd /app/glutton-source/lookup && ./gradlew clean assemble --no-daemon
# build runtime image
# -------------------
FROM openjdk:8-jre-slim
RUN apt-get update -qq && apt-get -qy install curl
RUN apt-get update -qq && apt-get -qy install curl build-essential unzip

RUN mkdir -p /app
WORKDIR /app

RUN curl -sL https://deb.nodesource.com/setup_11.x | bash -
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
RUN apt-get update -qq && apt-get -y install nodejs
COPY --from=builder /app/glutton-source/matching /app/matching
RUN cd matching; npm install
Expand Down

0 comments on commit 69b6355

Please sign in to comment.