You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
472 B
Docker
25 lines
472 B
Docker
ARG REPO=library
|
|
FROM ${REPO}/alpine:3.12
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app/
|
|
|
|
# Add common checking tools
|
|
RUN apk --no-cache add bash=~5.0 curl=~7.79 jq=~1.6
|
|
|
|
# Add minitor user for running as non-root
|
|
RUN addgroup -S minitor && adduser -S minitor -G minitor
|
|
|
|
# Copy scripts
|
|
COPY ./scripts /app/scripts
|
|
RUN chmod -R 755 /app/scripts
|
|
|
|
# Copy minitor in
|
|
ARG ARCH=amd64
|
|
COPY ./dist/minitor-linux-${ARCH} ./minitor
|
|
|
|
# Drop to non-root user
|
|
USER minitor
|
|
|
|
ENTRYPOINT [ "./minitor" ]
|