Skip to content

Commit

Permalink
fix byacc parser docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
ericparton committed Apr 11, 2024
1 parent 2882f5c commit 8852af9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/parser/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM centos:8
FROM fedora:39

RUN echo "fastestmirror=1" >> /etc/dnf/dnf.conf
RUN dnf -y install make gcc
COPY ./byaccj-p2/src /src
WORKDIR /src
RUN make

FROM centos:8
FROM fedora:39
COPY --from=0 /src/yacc /bin/yacc
COPY ./bin/generateByaccs /bin/
ENTRYPOINT ["/bin/generateByaccs"]

0 comments on commit 8852af9

Please sign in to comment.