Skip to content

Commit c433b13

Browse files
committed
chore: add turnkey dev setup
1 parent 435f006 commit c433b13

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM brainpower/node-cubicle
2+
3+
WORKDIR /root/repo
4+
5+
ADD . ./
6+
RUN yarn
7+
RUN yarn build

docker-compose.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: "3"
2+
services:
3+
commitlint:
4+
build: .
5+
image: marionebl/commitlint-cubicle
6+
ports:
7+
- "8443:8443"
8+
volumes:
9+
- .:/root/repo
10+
command: code-server --no-auth /root/repo

0 commit comments

Comments
 (0)