This file contains 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
... | |
# before any routing requirings | |
require './router' | |
routes = require './routes/index' | |
... |
This file contains 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
FROM fedora | |
RUN dnf -y install glibc-langpack-ja | |
# ... 他のRUN | |
ENV LANGUAGE="ja_JP:ja" LC_ALL="ja_JP.UTF-8" | |
ENV TZ="Aisa/Tokyo" |