Browse Source

Add 'Dockerfile'

天问 1 year ago
parent
commit
ae7c75ec5c
1 changed files with 40 additions and 0 deletions
  1. 40 0
      Dockerfile

+ 40 - 0
Dockerfile

@@ -0,0 +1,40 @@
+# Ruby
+#
+# https://github.com/docker-library/ruby
+
+# Pull base image.
+FROM ruby:2.6-stretch
+# FIX APT Resource
+RUN mv /etc/apt/sources.list /etc/apt/sources.list.bak
+COPY stretch.sources.list /etc/apt/sources.list
+
+RUN apt-get update && \
+    apt-get install -y curl git unzip vim wget && \
+    apt-get install -y locales kde-l10n-zhcn && \ 
+    apt-get clean && \
+    rm -rf /var/lib/apt/lists/*
+
+RUN sed -i 's/# zh_CN.UTF-8 UTF-8/zh_CN.UTF-8 UTF-8/g' /etc/locale.gen
+
+RUN locale && locale-gen "zh_CN.UTF-8"
+
+# Set environment variables.
+ENV LANG=zh_CN.UTF-8 \
+    LANGUAGE=zh_CN:zh:en_US:en \
+    LC_ALL=zh_CN.UTF-8 \
+    TZ=Asia/Shanghai \
+    DEBIAN_FRONTEND="noninteractive" \
+    TERM=xterm
+
+RUN ln -fs /usr/share/zoneinfo/$TZ /etc/localtime && \
+            echo $TZ > /etc/timezone && \        
+            dpkg-reconfigure --frontend noninteractive tzdata && \
+            dpkg-reconfigure --frontend noninteractive locales
+
+# FIX Ruby RESOURCE
+RUN bundle config mirror.https://rubygems.org https://gems.ruby-china.com
+RUN gem sources --add https://gems.ruby-china.com/ --remove https://rubygems.org/
+RUN gem sources -l
+
+# Define default command.
+CMD [ "irb" ]