Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1FROM ghcr.io/facebook/threatexchange/hma:1.1.4
2
3WORKDIR /app
4
5COPY omm_config.py /app/omm_config.py
6COPY local-entrypoint.sh /app/entrypoint.sh
7
8# Make the entrypoint script executable
9RUN chmod +x /app/entrypoint.sh
10
11ENV OMM_CONFIG=/app/omm_config.py
12
13ENTRYPOINT ["/app/entrypoint.sh"]