Shift a bunch of root-directory files into a new less-cluttered bootstrap directory.

This commit is contained in:
Ben Rog-Wilhelm 2023-02-15 14:54:09 -06:00 committed by GitHub
parent 9da3451ed9
commit 0af172d173
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 14 additions and 1425 deletions

View file

@ -24,7 +24,7 @@ ENV FLASK_APP=files/cli:app
# Release container
FROM base AS release
COPY supervisord.conf.release /etc/supervisord.conf
COPY bootstrap/supervisord.conf.release /etc/supervisord.conf
CMD [ "/usr/bin/supervisord", "-c", "/etc/supervisord.conf" ]
@ -36,7 +36,7 @@ FROM release AS dev
COPY thirdparty/sqlalchemy-easy-profile sqlalchemy-easy-profile
RUN cd sqlalchemy-easy-profile && python3 setup.py install
COPY supervisord.conf.dev /etc/supervisord.conf
COPY bootstrap/supervisord.conf.dev /etc/supervisord.conf
CMD [ "/usr/bin/supervisord", "-c", "/etc/supervisord.conf" ]