Skip to content

Commit c316b95

Browse files
committed
Docker image is too big.
Problem: Docker image is 1.18GB. Solution: Base ubuntu image is only 77.8MB so adding all deps adds 950MB. Added no-install-recommends reduces image size to 853MB. Signed-off-by: Paul Hewlett <[email protected]>
1 parent 3845ec0 commit c316b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile-scraper

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:jammy
22

33
RUN apt-get update \
44
&& apt-get upgrade -y --no-install-recommends \
5-
&& apt-get install -y \
5+
&& apt-get install -y --no-install-recommends \
66
curl \
77
default-jdk \
88
jq \

0 commit comments

Comments
 (0)