routeros-config-export/Dockerfile
Renovate Bot f33987150d chore(deps): update alpine docker tag to v3.21.3 ()
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2025-02-14 21:11:06 +01:00

21 lines
353 B
Docker

FROM alpine:3.21.3
# hadolint ignore=DL3018
RUN apk add --no-cache \
git \
openssh-client \
iputils-ping \
bash \
moreutils \
&& 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
CMD ["bash", "/app/app.sh"]