1
0
mirror of https://github.com/EV21/dynb.git synced 2025-12-26 16:39:32 +01:00

add Dockerfile

This commit is contained in:
2021-04-22 22:17:49 +02:00
parent 30e77c9722
commit f9507929da
3 changed files with 16 additions and 1 deletions

9
.dockerignore Normal file
View File

@@ -0,0 +1,9 @@
**/.env
**/.dockerignore
**/.docker-compose.debug.yml
**/.docker-compose.yml
**/.git
**/.gitignore
**/.gitchangelog.rc
man/man.rst
man/man-defs.rst

1
.gitignore vendored
View File

@@ -1 +1,2 @@
.env*
docker-compose*

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM alpine:latest
RUN apk update && apk add bash curl jq bind-tools
WORKDIR /usr/src/app
COPY . .
CMD /bin/bash /usr/src/app/dynb.sh