Skip to content

Commit

Permalink
Add instructions for Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
johnthagen authored and ermshiperete committed Mar 8, 2021
1 parent dc180cc commit 3817383
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,24 @@ You can build and run the unit tests by running:

If you run into issues you might want to try with a newer mono version or with our custom `mono-sil` package from [packages.sil.org](http://packages.sil.org/)

### Docker

icu-dotnet depends on libc dynamic libraries at run time. If running within Docker, you may
need to install them, for example:

```Dockerfile
FROM mcr.microsoft.com/dotnet/aspnet:3.1

# Install system dependencies.
RUN apt-get update \
&& apt-get install -y \
# icu.net dependency: libdl.so
libc6-dev \
&& rm -rf /var/lib/apt/lists/*

...
```

### Windows

Build and run the unit tests by running:
Expand Down

0 comments on commit 3817383

Please sign in to comment.