mirror of
https://github.com/EV21/dynb.git
synced 2025-12-26 16:39:32 +01:00
12 lines
161 B
Docker
12 lines
161 B
Docker
FROM alpine:latest
|
|
RUN \
|
|
apk update \
|
|
&& \
|
|
apk add \
|
|
bash \
|
|
curl \
|
|
jq \
|
|
bind-tools
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
ENTRYPOINT ["/bin/bash", "/usr/src/app/dynb.sh"] |