mirror of
https://github.com/willfarrell/docker-autoheal.git
synced 2024-12-06 19:16:20 +01:00
5b99d0280f
Updated Dockerfile and scripts with some of the latest PR's, and work from tylerpace. Adding a few files back from original repo such as tests and github workflow. Co-Authored-By: Tyler Pace <4195596+tylerpace@users.noreply.github.com>
9 lines
111 B
Docker
Executable File
9 lines
111 B
Docker
Executable File
FROM alpine:latest
|
|
|
|
RUN apk --update add bash docker
|
|
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"] |