don't build verbously

This commit is contained in:
Johannes Loher 2018-11-28 22:11:38 +01:00
parent 7147315b04
commit 269cd36c3a
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@ RUN useradd --user-group --create-home --shell /bin/false app
RUN chown -R app:app /dlang/vibe-docker
USER app
RUN dub build -v
RUN dub build
EXPOSE 8080

View file

@ -13,5 +13,5 @@ void main()
void hello(HTTPServerRequest, HTTPServerResponse res)
{
res.writeBody("Hello, World!");
res.writeBody("Hello, from Docker!");
}