From e45001d9560a337e6c6662d6f536055ce00d2401 Mon Sep 17 00:00:00 2001 From: Udit Karode Date: Fri, 5 May 2023 13:42:33 +0530 Subject: [PATCH] feat: use `node:20-alpine3.16` --- .build/Dockerfile | 2 +- .build/docker-compose.yml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .build/docker-compose.yml diff --git a/.build/Dockerfile b/.build/Dockerfile index 277a83a..2e80d97 100644 --- a/.build/Dockerfile +++ b/.build/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.15.0-alpine3.17 +FROM node:20-alpine3.16 # Set build shell to bash, default has has some issues sometimes diff --git a/.build/docker-compose.yml b/.build/docker-compose.yml new file mode 100644 index 0000000..c203fd1 --- /dev/null +++ b/.build/docker-compose.yml @@ -0,0 +1,10 @@ +version: '3.5' +services: +######################### + bing-tg: + build: + context: .. + dockerfile: .build/Dockerfile + hostname: bing-tg + image: uditkarode/bing-chat-telegram:latest +