routeros-config-export/Dockerfile
Renovate Bot a62c3c289d
All checks were successful
lint, build and push / lint (push) Successful in 7s
lint, build and push / build (push) Successful in 23s
chore(deps): update alpine docker tag to v3.20.3 (#1)
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2024-09-27 13:13:41 +02:00

20 lines
337 B
Docker

FROM alpine:3.20.3
# 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"]