fix nightly toolchain version in dockerfile (#194)

This commit is contained in:
QP Hou 2022-09-25 19:41:20 -07:00 committed by GitHub
parent 4e812b9995
commit 175344ed1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -7,7 +7,7 @@ on:
branches: [ main ]
env:
# NOTE: this env is also defined in roapi_http_release.yml and columnq_cli_release.yml
# NOTE: the version is also defined in roapi_http_release.yml, columnq_cli_release.yml and Dockerfile
RUST_TC_NIGHTLY_VER: "2022-09-24"
jobs:

View File

@ -11,7 +11,7 @@ on:
tags: [ 'columnq-cli-v*' ]
env:
# NOTE: this env is also defined in build.yml
# NOTE: the version is also defined in build.yml and Dockerfile
RUST_TC_NIGHTLY_VER: "2022-09-24"
jobs:

View File

@ -11,7 +11,7 @@ on:
tags: [ 'roapi-v*' ]
env:
# NOTE: this env is also defined in build.yml
# NOTE: the version is also defined in build.yml and Dockerfile
RUST_TC_NIGHTLY_VER: "2022-09-24"
jobs:

View File

@ -1,4 +1,4 @@
FROM instrumentisto/rust:nightly-bullseye-2022-01-03 AS builder
FROM instrumentisto/rust:nightly-bullseye-2022-09-24 AS builder
WORKDIR /roapi_src
COPY ./ /roapi_src
RUN apt-get update \