Skip to content

Commit

Permalink
Update base for Docker build image
Browse files Browse the repository at this point in the history
I came across this in WebAssembly#392, where it became clear that Ubuntu's 18.04
release (now several years old) was using quite ancient versions of
certain tools.
  • Loading branch information
abrown committed Mar 8, 2024
1 parent 73dbb2f commit eb7a4c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Use a relatively old/stable distro here to maximize the supported platforms
# and avoid depending on more recent version of, say, libc.
# Here we choose Bionic 18.04.
FROM ubuntu:bionic
# and avoid depending on more recent version of, say, libc. Here we choose Jammy
# 22.04.
FROM ubuntu:jammy

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
Expand Down

0 comments on commit eb7a4c7

Please sign in to comment.