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

enable parameter extensions for docker run --interactive

This commit is contained in:
2021-09-24 12:22:25 +02:00
parent 4925be5405
commit 200c5b5d1a

View File

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