Skip to content

Commit 9a412b6

Browse files
authored
Update rust version in dockerfile (#633)
* Update rust version in dockerfile Apparently it was there twice, I missed it. I wonder why it's there twice * Build docker file in github actions
1 parent 9b05c5d commit 9a412b6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/rust.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,10 @@ jobs:
6262
trunk --config=josh-ui/Trunk.toml build
6363
sh run-tests.sh tests/filter/*.t
6464
sh run-tests.sh tests/proxy/*.t
65+
build-dockerfile:
66+
runs-on: ubuntu-latest
67+
steps:
68+
- uses: actions/checkout@v2
69+
- uses: satackey/action-docker-layer-caching@v0.0.11
70+
- name: Build docker file
71+
run: docker build .

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.54 as builder
1+
FROM rust:1.58.1 as builder
22

33
RUN apt-get update \
44
&& apt-get install -y cmake \

0 commit comments

Comments
 (0)