mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-01 06:29:44 +00:00
84b525f83e
Adds a pruning script which is installed but not set to run by default. Also adds for that script that can be run in a container that replicates the db container's conditions
8 lines
No EOL
220 B
Docker
8 lines
No EOL
220 B
Docker
FROM postgres:latest
|
|
|
|
RUN apt update && apt install -y shellcheck
|
|
|
|
COPY ./tests/testing-entrypoint.sh /testing-entrypoint.sh
|
|
RUN chmod u+rx,go=r /testing-entrypoint.sh
|
|
COPY ./weed.sh /weed.sh
|
|
RUN chmod u+rx,go=r /weed.sh |