Skip to content

Commit

Permalink
日本語対応
Browse files Browse the repository at this point in the history
  • Loading branch information
taigaozawa committed Mar 22, 2021
1 parent b572d35 commit cd82920
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM node:14.15.4

RUN apt-get update
RUN apt-get install -y locales
RUN locale-gen ja_JP.UTF-8
RUN localedef -f UTF-8 -i ja_JP ja_JP
ENV LANG ja_JP.UTF-8
ENV TZ Asia/Tokyo
WORKDIR /fibonacci
7 changes: 7 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: '3'
services:
app:
build: .
tty: true
volumes:
- .:/fibonacci

0 comments on commit cd82920

Please sign in to comment.