mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-01 06:29:44 +00:00
8 lines
220 B
Docker
8 lines
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
|