17 lines
362 B
Docker
17 lines
362 B
Docker
|
# -*- 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
|