routeros-config-export/Dockerfile
Renovate Bot 4c3edbf7b4
All checks were successful
lint, build and push / lint (pull_request) Successful in 27s
lint, build and push / build (pull_request) Successful in 38s
chore(deps): update alpine docker tag to v3.21.1
2025-01-07 08:10:59 +00:00

20 lines
337 B
Docker

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