9 lines
148 B
Docker
Executable File
9 lines
148 B
Docker
Executable File
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache postgresql-client bash
|
|
|
|
COPY cleaner.sh /cleaner.sh
|
|
RUN chmod +x /cleaner.sh
|
|
|
|
ENTRYPOINT ["/cleaner.sh"]
|