rust-musl-builder/examples/linking-with-git2/Dockerfile

17 lines
362 B
Docker
Raw Normal View History

# -*- mode: dockerfile -*-
#
# An example Dockerfile showing how to add new static C libraries using
# musl-gcc.
# Our first FROM statement declares the build environment.
FROM ekidd/rust-musl-builder AS builder
# Add our source code.
ADD . ./
# Fix permissions on source code.
RUN sudo chown -R rust:rust /home/rust
# Build our application.
RUN cargo build