mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 13:05:31 +00:00
The Ubuntu and Fedora files are very similar. But I am not sure (yet) what is the best way to share. The files uploaded to the GitHub Release use the exact same names as before. The .jar files are binary identical to the ones that go to Maven (checked). The Fedora Docker image should be built and uploaded from a dev machine. There is a workflow (from GitHub) doing that, but has a warning that: > This workflow uses actions that are not certified by GitHub. > They are provided by a third-party and are governed by > separate terms of service, privacy policy, and support documentation.
9 lines
205 B
Text
9 lines
205 B
Text
FROM fedora:latest
|
|
|
|
RUN dnf install -y gcc-c++ zip unzip git-core git-lfs doxygen
|
|
RUN git lfs install --skip-repo \
|
|
&& ln -s /usr/bin/python3 /usr/bin/python
|
|
|
|
WORKDIR /root
|
|
|
|
ENTRYPOINT [ "/bin/bash" ]
|