How to Docker Install Chromium-Browser with a Specific Version?

14 Replies, 1195 Views

Hey! I’ve been using Docker for a while now. For docker install chromium-browser with version 110.0.5481.177, you can either pull the specific tag or build it yourself.

Here’s a quick Dockerfile example:
```
FROM ubuntu:20.04
RUN apt-get update && apt-get install -y chromium-browser=110.0.5481.177
```

If you’re stuck, try asking on Stack Overflow. The Docker community there is super helpful.

Messages In This Thread



Users browsing this thread: 1 Guest(s)