We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 078ab8b + ac3fb24 commit fafc61fCopy full SHA for fafc61f
Dockerfile
@@ -1,12 +1,7 @@
1
-FROM rust:1.78 AS build
+FROM rust:1.80-alpine AS build
2
WORKDIR /usr/src
3
4
-# Download the target for static linking.
5
-RUN rustup target add $(arch)-unknown-linux-musl
6
-
7
-# Fix ring building using musl - see https://github.com/briansmith/ring/issues/1414#issuecomment-1055177218
8
-RUN apt-get update && apt-get install musl-tools clang llvm -y
9
-ENV CC="clang"
+RUN apk add --no-cache musl-dev make
10
11
RUN mkdir /usr/src/policy-server
12
WORKDIR /usr/src/policy-server
0 commit comments