Skip to content

Commit

Permalink
Merge pull request #3273 from mtzguido/ci
Browse files Browse the repository at this point in the history
base.Dockerfile: remove libicu from install invocation
  • Loading branch information
mtzguido committed Apr 27, 2024
2 parents c9e98c7 + cfb3d61 commit 96f9084
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .docker/base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
# will NOT use this file.

# We always try to build against the most current ubuntu image.
FROM ubuntu:latest
# FIXME: Broken with 24.04, fixing it to 23.10 so we can keep working
FROM ubuntu:23.10

RUN apt-get update

Expand All @@ -22,7 +23,6 @@ RUN apt-get -y --no-install-recommends install vim emacs
# Base dependencies: opam
# CI dependencies: jq (to identify F* branch)
# python3 (for interactive tests)
# libicu (for .NET, cf. https://aka.ms/dotnet-missing-libicu )
RUN apt-get install -y --no-install-recommends \
jq \
bc \
Expand All @@ -34,7 +34,6 @@ RUN apt-get install -y --no-install-recommends \
sudo \
python3 \
python-is-python3 \
libicu70 \
opam \
&& apt-get clean -y

Expand Down

0 comments on commit 96f9084

Please sign in to comment.