mirror of
https://github.com/Nimac0/SDL_Minigame
synced 2026-01-12 22:23:43 +00:00
13 lines
219 B
Docker
13 lines
219 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk --update --no-cache add doxygen graphviz git
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
WORKDIR /source
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["doxygen", "/Doxyfile_copy"] |