routeros-config-export/Dockerfile
Renovate Bot cc7b849e23
All checks were successful
lint, build and push / lint (push) Successful in 5s
lint, build and push / build (push) Successful in 21s
chore(deps): update alpine docker tag to v3.21.0 (#9)
Co-authored-by: Renovate Bot <renovate@mgrote.net>
Co-committed-by: Renovate Bot <renovate@mgrote.net>
2024-12-06 01:21:06 +01:00

20 lines
337 B
Docker

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