-
Notifications
You must be signed in to change notification settings - Fork 888
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b572d35
commit cd82920
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
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
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 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
version: '3' | ||
services: | ||
app: | ||
build: . | ||
tty: true | ||
volumes: | ||
- .:/fibonacci |