File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed
Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ FROM ubuntu:latest AS build
22
33WORKDIR /root
44
5+ #
6+ # Dependencies
7+ #
8+
59RUN apt update -qq \
610 && DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \
711 # Common
@@ -71,7 +75,6 @@ RUN cd /usr/local/lib && rm -fr libghdlvpi.so libghw.so python3.* \
7175###############################################################################
7276
7377FROM ubuntu:latest
74- #gcr.io/distroless/static-debian12
7578
7679RUN apt update -qq \
7780 && DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends \
@@ -81,8 +84,8 @@ RUN apt update -qq \
8184 && apt autoclean && apt clean && apt -y autoremove \
8285 && rm -rf /var/lib/apt/lists/*
8386
84- COPY --from=build /usr/local/bin /usr/local/bin
85- COPY --from=build /usr/local/lib /usr/local/lib
86- COPY --from=build /usr/local/include/ghdl /usr/local/include/ghdl
87- COPY --from=build /usr/local/share/yosys /usr/local/share/yosys
88- COPY --from=build /usr/local/share/synlig /usr/local/share/synlig
87+ COPY --from=build /usr/local/bin /usr/local/bin
88+ COPY --from=build /usr/local/lib /usr/local/lib
89+ COPY --from=build /usr/local/include/ghdl /usr/local/include/ghdl
90+ COPY --from=build /usr/local/share/yosys /usr/local/share/yosys
91+ COPY --from=build /usr/local/share/synlig /usr/local/share/synlig
You can’t perform that action at this time.
0 commit comments