-
Notifications
You must be signed in to change notification settings - Fork 150
Open
Labels
Description
It would be a nice feature if the radar were packaged up and offered as a Docker base image, upon which people could mount their configuration files, public assets, and markdown radar files.
This would lower the barrier to adoption, especially among teams that don't use Node, next.js, etc. in their stack, and don't want to build tooling for it.
For example, Dockerfile
:
# Some official base image
FROM aoppeople:aoe_technology_radar:1.0.0
# Optionally overwrite directories or files
COPY public /app/public/
COPY radar /app/radar/
COPY config /app/config/
COPY config.json /app/config/config.json
# build the app
RUN some-command-to-build-the-app
# Expose the port that the app will run on
EXPOSE 3000
# Define the command to run the app
CMD ["./some-entrypoint.sh"]
mathiasschopmans