Skip to content

Commit e48e76a

Browse files
build: add nightly-2022-12-10 rust-related builder image (#282)
1 parent f5d0217 commit e48e76a

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

build/dockerfiles/intermediate/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GO_VERSION := 1.18
22
PYTHON_VERSION := 3.10
3-
RUST_VERSION := nightly-2022-08-23
3+
RUST_VERSION := nightly-2022-12-10
44

55
.PHONY: all go-alpine-builder rust-builder rust-alpine-builder go-rust-alpine-builder go-rust-builder py-runner
66

build/dockerfiles/intermediate/go-alpine-builder.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ FROM golang:1.18-alpine
44

55
# RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
66

7-
RUN apk add --no-cache gcc musl-dev linux-headers git ca-certificates
7+
RUN apk add --no-cache gcc musl-dev linux-headers git ca-certificates openssl-dev

build/dockerfiles/intermediate/go-rust-alpine-builder.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
FROM golang:1.18-alpine
22
ARG CARGO_CHEF_TAG=0.1.41
3-
ARG DEFAULT_RUST_TOOLCHAIN=nightly-2022-08-23
3+
ARG DEFAULT_RUST_TOOLCHAIN=nightly-2022-12-10
44

5-
RUN apk add --no-cache gcc musl-dev linux-headers git ca-certificates
5+
RUN apk add --no-cache gcc musl-dev linux-headers git ca-certificates openssl-dev
66

77
# RUN apk add --no-cache libc6-compat
88
# RUN apk add --no-cache gcompat

build/dockerfiles/intermediate/go-rust-builder.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ENV PATH="/root/.cargo/bin:${PATH}"
1414
ENV CARGO_HOME=/root/.cargo
1515

1616
# Add Toolchain
17-
RUN rustup toolchain install nightly-2022-08-23
17+
RUN rustup toolchain install nightly-2022-12-10
1818

1919
# TODO: make this ARG
2020
ENV CARGO_CHEF_TAG=0.1.41

build/dockerfiles/intermediate/rust-alpine-builder.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
ARG ALPINE_VERSION=3.15
22
FROM alpine:${ALPINE_VERSION}
33
ARG CARGO_CHEF_TAG=0.1.41
4-
ARG DEFAULT_RUST_TOOLCHAIN=nightly-2022-08-23
4+
ARG DEFAULT_RUST_TOOLCHAIN=nightly-2022-12-10
55

66
RUN apk add --no-cache \
77
ca-certificates \
8+
openssl-dev \
89
gcc \
910
git \
1011
musl-dev

build/dockerfiles/intermediate/rust-builder.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
1313
ENV PATH="/root/.cargo/bin:${PATH}"
1414

1515
# Add Toolchain
16-
RUN rustup toolchain install nightly-2022-08-23
16+
RUN rustup toolchain install nightly-2022-12-10

0 commit comments

Comments
 (0)