We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ec32de + 9b9ae00 commit f0ff5b7Copy full SHA for f0ff5b7
Dockerfile
@@ -0,0 +1,6 @@
1
+FROM node:16.20-slim
2
+COPY . /app
3
+WORKDIR /app
4
+RUN npm install
5
+ENV TZ Asia/Tokyo
6
+CMD npm run start
docker-compose.yml
@@ -0,0 +1,14 @@
+version: '3'
+services:
+ web:
+ container_name: codejavu-web
+ build:
+ context: .
7
+ dockerfile: Dockerfile
8
+ ports:
9
+ - 4200:4200
10
+ volumes:
11
+ - .:/app
12
+ stdin_open: true
13
+ tty: true
14
+ restart: always
0 commit comments