Skip to content

Commit

Permalink
Fix copy commands in dockerfiles.
Browse files Browse the repository at this point in the history
  • Loading branch information
sadeepquix committed Sep 11, 2023
1 parent 36949fb commit d405d39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/platform/tutorials/matlab/matlab-and-simulink.md
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ Quix supports all versions of MATLAB with support for MATLAB Runtime API. To red

# MathWorks base dependencies
ENV DEBIAN_FRONTEND="noninteractive" TZ="Etc/UTC"
COPY base-dependencies.txt /tmp/base-dependencies.txt
COPY --from=git /project/base-dependencies.txt /tmp/base-dependencies.txt
RUN apt-get update && apt-get install --no-install-recommends -y `cat /tmp/base-dependencies.txt` \
&& apt-get clean && apt-get -y autoremove && rm -rf /var/lib/apt/lists/*
RUN [ -d /usr/share/X11/xkb ] || mkdir -p /usr/share/X11/xkb
Expand All @@ -510,7 +510,7 @@ Quix supports all versions of MATLAB with support for MATLAB Runtime API. To red

# MathWorks base dependencies
ENV DEBIAN_FRONTEND="noninteractive" TZ="Etc/UTC"
COPY base-dependencies.txt /tmp/base-dependencies.txt
COPY --from=git /project/base-dependencies.txt /tmp/base-dependencies.txt
RUN apt-get update && apt-get install --no-install-recommends -y `cat /tmp/base-dependencies.txt` \
&& apt-get clean && apt-get -y autoremove && rm -rf /var/lib/apt/lists/*
RUN [ -d /usr/share/X11/xkb ] || mkdir -p /usr/share/X11/xkb
Expand All @@ -530,7 +530,7 @@ Quix supports all versions of MATLAB with support for MATLAB Runtime API. To red

# MathWorks base dependencies
ENV DEBIAN_FRONTEND="noninteractive" TZ="Etc/UTC"
COPY base-dependencies.txt /tmp/base-dependencies.txt
COPY --from=git /project/base-dependencies.txt /tmp/base-dependencies.txt
RUN apt-get update && apt-get install --no-install-recommends -y `cat /tmp/base-dependencies.txt` \
&& apt-get clean && apt-get -y autoremove && rm -rf /var/lib/apt/lists/*
RUN [ -d /usr/share/X11/xkb ] || mkdir -p /usr/share/X11/xkb
Expand Down

0 comments on commit d405d39

Please sign in to comment.