mirror of
https://github.com/vacp2p/10ksim.git
synced 2025-02-24 20:18:14 +00:00
14 lines
275 B
Docker
14 lines
275 B
Docker
FROM alpine:latest
|
|
|
|
# Update the package repository and install bind-tools and wget
|
|
RUN apk update && \
|
|
apk add bind-tools wget bash && \
|
|
# Create /app directory
|
|
mkdir /app
|
|
|
|
ADD getenr.sh /app/getenr.sh
|
|
|
|
RUN chmod +x /app/getenr.sh
|
|
|
|
ENTRYPOINT ["/app/getenr.sh"]
|