sd generator

This commit is contained in:
2023-08-17 09:04:39 +02:00
parent 4dc964360e
commit d531f56828
166 changed files with 44705 additions and 1 deletions

20
docker/Dockerfile Normal file
View File

@@ -0,0 +1,20 @@
FROM gcc:latest
WORKDIR /app
COPY ./generate.sh /app/
RUN chmod 755 /app/generate.sh
COPY ./start.sh /app/
RUN chmod 755 /app/start.sh
COPY ./Makefile /app/
ENTRYPOINT ["tail"]
CMD ["-f","/dev/null"]
#CMD ["./generate.sh"]