File tree 3 files changed +815
-1
lines changed
3 files changed +815
-1
lines changed Original file line number Diff line number Diff line change
1
+ FROM debian:stretch
2
+
3
+ # Install the packages contained in `packages.txt`
4
+ COPY packages.txt /opt/crates-build-env/packages.txt
5
+ RUN apt-get update && cat /opt/crates-build-env/packages.txt | DEBIAN_FRONTEND=noninteractive xargs apt-get install -y
Original file line number Diff line number Diff line change 1
1
# Build environment for Rust crates
2
2
3
- WIP.
3
+ This repository contains the source of the Docker container the Rust project
4
+ uses to build third-party crates. It is based on ** Debian 9 Stretch** , and
5
+ contains all the native dependencies used by the Rust crates we know of.
6
+
7
+ ## Adding new dependencies
8
+
9
+ If your crate fails to build on one of the services that uses this Docker
10
+ image, please either open an issue with the name of the packages you need or
11
+ send a pull request that adds the packages to ` packages.txt ` .
You can’t perform that action at this time.
0 commit comments