routeros-config-export/Dockerfile

22 lines
393 B
Docker

# hadolint ignore=DL3007
FROM alpine:latest
# hadolint ignore=DL3018
RUN apk add --no-cache \
git \
openssh-client \
iputils-ping \
&& mkdir /app
# Copy the script into the container
COPY app.sh /app/app.sh
# Set the working directory
WORKDIR /app
# Make the script executable
RUN chmod +x /app/app.sh
# Set the entrypoint to execute the script
ENTRYPOINT ["/app/app.sh"]