Skip to content

Commit

Permalink
Add serde to CSCI 4510 (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjreed121 authored Feb 21, 2024
1 parent 22436ee commit 87468ae
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dockerfiles/csci4510/spring24/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -307,9 +307,10 @@ RUN set -eux; \
rm -rf /var/lib/apt/lists/*;

RUN cargo new dockerdeps \
&& echo 'serde_json = "1.0.111"' >> /dockerdeps/Cargo.toml \
&& echo 'serde_json = "=1.0.111"' >> /dockerdeps/Cargo.toml \
&& echo 'serde = { version = "=1.0.196", features = ["derive"] }' >> /dockerdeps/Cargo.toml \
&& cd dockerdeps \
&& cargo build \
&& cargo fetch \
&& cd .. && \
rm -rf dockerdeps

Expand Down

0 comments on commit 87468ae

Please sign in to comment.