Skip to content

Commit

Permalink
fix(setup): properly use '-y' in Dockerfile apt-get
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Oct 24, 2019
1 parent fec44f7 commit 82d5e83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG TAG=latest
FROM golang:stretch AS go-build

WORKDIR /usr/src/journalbeat
RUN apt-get update && apt-get install libsystemd-dev
RUN apt-get update -y && apt-get install -y libsystemd-dev
RUN go get github.com/mheese/journalbeat

FROM agoric/cosmic-swingset:$TAG
Expand Down

0 comments on commit 82d5e83

Please sign in to comment.