summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 2a367c7a..0c0bf256 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,7 @@
# syntax=docker/dockerfile:1
FROM rust:latest AS builder
WORKDIR /app
+RUN apt-get update && apt-get install -y musl-tools musl-dev
RUN rustup target add x86_64-unknown-linux-musl
COPY . ./
RUN cargo build --release --target x86_64-unknown-linux-musl