Skip to content

Commit 43a11fa

Browse files
committed
Add Docker
1 parent 10048b3 commit 43a11fa

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

Dockerfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
FROM --platform=linux/x86_64 node:18
2+
3+
RUN apt-get update
4+
RUN apt-get install -y locales
5+
RUN locale-gen ja_JP.UTF-8
6+
RUN localedef -f UTF-8 -i ja_JP ja_JP
7+
ENV LANG ja_JP.UTF-8
8+
ENV TZ Asia/Tokyo
9+
WORKDIR /font

docker-compose.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: '3'
2+
services:
3+
app:
4+
build: .
5+
tty: true
6+
volumes:
7+
- .:/font

0 commit comments

Comments
 (0)