Skip to content

Commit 1d4ee5b

Browse files
Updated rust to fix build and merged in dependabot PRs
With rust 1.41 the build was failing with errors such as: According to the following pages this is due to a minimum requirement of rust 1.42 rust-lang/rust#65721 diem/diem#3558 Updated to almost latest rust 1.51. 1.52 was released today but is not available in the docker repository
1 parent 9e9c256 commit 1d4ee5b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COPY tsconfig.json webpack.config.js /app/
1111
COPY src /app/src
1212
RUN npx webpack --mode production
1313

14-
FROM rust:1.41 AS server-compiler
14+
FROM rust:1.51 AS server-compiler
1515
WORKDIR /app/server
1616
RUN mkdir /app/dist && touch --date "1 Jan 1970" /app/dist/index.html /app/dist/main.js
1717
COPY server /app/server

0 commit comments

Comments
 (0)