routeros-config-export/Dockerfile
Renovate Bot 1eec93c6a4
Some checks failed
lint, build and push / lint (pull_request) Successful in 8s
lint, build and push / build (pull_request) Failing after 19s
chore(deps): update alpine docker tag to v3.20.3
2024-09-27 11:13:40 +00: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"]