From 19c7d0fc77c854512b5027398d2708345a9e6f1f Mon Sep 17 00:00:00 2001 From: Nishant Bhagat Date: Sat, 1 Jul 2023 18:32:22 +0530 Subject: [PATCH] Update Dockerfile - Added Chrome --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c1fc301..8bda32b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,9 @@ FROM golang:1.14-buster as builder RUN GO111MODULE=on GOOS=linux go get -ldflags "-linkmode external -extldflags -static" github.com/jaeles-project/jaeles FROM alpine:latest +RUN apk add chromium WORKDIR / COPY --from=builder /go/bin/jaeles /bin/jaeles EXPOSE 5000 RUN jaeles config init -y -ENTRYPOINT ["/bin/jaeles"] \ No newline at end of file +ENTRYPOINT ["/bin/jaeles"]