routeros-config-export/Dockerfile
Renovate Bot d3a3f85c12
All checks were successful
lint, build and push / lint (push) Successful in 34s
lint, build and push / build (push) Successful in 44s
chore(deps): update alpine docker tag to v3.21.2 (#14)
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2025-01-08 21:10:09 +01:00

20 lines
337 B
Docker

FROM alpine:3.21.2
# hadolint ignore=DL3018
RUN apk add --no-cache \
git \
openssh-client \
iputils-ping \
bash \
&& 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"]