Skip to content

Commit 834c788

Browse files
updates reqs, install build-essential and rust
1 parent 77ee856 commit 834c788

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
FROM python:3.9-slim
22

33
RUN apt-get update && \
4-
apt-get install --no-install-recommends -y curl && \
4+
apt-get install --no-install-recommends -y build-essential curl && \
55
rm -rf /var/lib/apt/lists/*
66

7-
COPY submodules/parent-images/requirements/mini-requirements.txt .
7+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
8+
9+
ENV PATH="/root/.cargo/bin:${PATH}"
10+
811
COPY submodules/parent-images/requirements/exec-env-requirements.txt .
912

1013
RUN pip install --no-cache-dir -r exec-env-requirements.txt

build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22

3-
VERSION=v1.13.1
3+
VERSION=v1.14.0
44

55
docker build -t kernai/refinery-parent-images:$VERSION-exec-env -f Dockerfile .

0 commit comments

Comments
 (0)