Skip to content
Snippets Groups Projects
Commit 78b4be9d authored by Réthelyi Bálint's avatar Réthelyi Bálint :no_mouth:
Browse files

seqing

parent fefd0d77
Branches
No related tags found
1 merge request!1seq diagram
Pipeline #6286 passed
FROM texlive/texlive
RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get -y upgrade && apt-get -y install openjdk-11-jdk-headless hunspell hunspell-hu hunspell-en-gb hunspell-en-us
RUN export DEBIAN_FRONTEND=noninteractive && apt-get update && apt-get -y upgrade && apt-get -y install openjdk-11-jdk-headless hunspell hunspell-hu hunspell-en-gb hunspell-en-us python3-pip && pip3 install javalang
COPY tikz-uml.sty /usr/local/texlive/2020/texmf-dist/tex/latex/tikz-uml/tikz-uml.sty
COPY jsonDoclet.jar /root/jsonDoclet.jar
COPY ./plab/out/plab /usr/bin/plab
#ADD robinbird/build/distributions/robinbird.tar /
RUN mktexlsr
RUN chmod +x gen_seq_diag.py
COPY gen_seq_diag.py /
RUN chmod +x /gen_seq_diag.py
\ No newline at end of file
......@@ -2,5 +2,7 @@ build:
mkdir -p out
go build -v -race -ldflags "-linkmode external -extldflags '-static'" -a -o out/plab
pwd = $(shell pwd)
podman:
podman run --rm -it -v $PWD:/build golang:alpine sh -c "apk add make build-base; cd /build; make"
\ No newline at end of file
podman run --rm -it -v ${pwd}:/build golang:alpine sh -c "apk add make build-base; cd /build; make"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment