Last active
July 21, 2025 02:21
-
-
Save rlan/f79be094a2cf41ba5ddff1cdf96bdc5e to your computer and use it in GitHub Desktop.
Dockerfile for OpenCC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run OpenCC in docker | |
# https://github.com/BYVoid/OpenCC | |
# | |
# Latest OpenCC build: 1.1.9+ds1-1build1 | |
# Ubuntu 25.04 Plucky Puffin has this build. | |
# Ref: https://launchpad.net/ubuntu/+source/opencc | |
# | |
# Build: | |
# docker build -t opencc-docker . | |
# | |
# Run: | |
# docker run -it --rm opencc-docker opencc --help | |
# | |
# License: | |
# MIT | |
# 2025 Rick Lan | |
# | |
FROM ubuntu:25.04 | |
RUN apt-get update | |
RUN apt-get install -y opencc | |
RUN apt-get clean && \ | |
rm -rf /var/lib/apt/lists/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment