DEV Community

Discussion on: An Introduction to Quarkus

Collapse
 
alonsoir profile image
@alonso_isidoro

Hi, thanks for sharing it.

How do you got that 50 MB container? because when I run the example, I got this:

aironman@MacBook-Pro-de-Alonso ~/g/quarkus-quickstart (master)> docker container ls | grep quarkus
0a3165e9f300 quarkus "./quarkusapp -Dquar…" 26 hours ago Up 26 hours 0.0.0.0:8080->8080/tcp hardcore_goldstine
aironman@MacBook-Pro-de-Alonso ~/g/quarkus-quickstart (master)> docker images | grep quarkus
quarkus latest b09b95ad10eb 26 hours ago 204MB

I am running Catalina 10.15.4 (19E287) Docker 2.3.1.0 (45408)

Collapse
 
habereder profile image
Raphael Habereder • Edited

Hi Alonso

The 50 MB you are referencing is the RAM usage of the Quarkus Native Binary.

The Image size itself is the same ~200M for me
quarkus latest cc034ce75edb 51 seconds ago 204MB

The native binary is ~30MB, the ubi-minimal image is ~140MB, adding the docker magic results in ~200M on disk.

As soon as alpine works with quarkus, we will hopefully get 50MB images too :D