docker file test NOT WORKING

This commit is contained in:
Shihaam Abdul Rahman 2022-09-23 20:07:44 +05:00
parent 07e683e10a
commit 4d9fa187b2
Signed by: shihaam
GPG Key ID: 3B007D22E5584980
2 changed files with 18 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM alpine:latest
WORKDIR /root
RUN apk update \
&& apk add bash curl jq
COPY bml-tg-notify.sh .
CMD ["./bml-tg-notify.sh"]

8
docker-compose.yml Normal file
View File

@ -0,0 +1,8 @@
version: '3.5'
services:
#########################
app:
build: .
image: bml-tg-notify
restart: always
env_file: .env