forked from antimony-lang/antimony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
30 lines (21 loc) · 812 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
FROM rust:1.50.0 AS build
WORKDIR /usr/src
# Download the target for static linking.
RUN rustup target add x86_64-unknown-linux-musl
# Create a dummy project and build the app's dependencies.
# If the Cargo.toml or Cargo.lock files have not changed,
# we can use the docker build cache and skip these (typically slow) steps.
WORKDIR /usr/src/antimony
COPY Cargo.toml Cargo.lock ./
# Copy the source and build the application.
COPY src ./src
COPY lib ./lib
COPY builtin ./builtin
RUN cargo install --target x86_64-unknown-linux-musl --path .
RUN cargo build --release
# Copy the statically-linked binary into a scratch container.
FROM alpine:3.13
LABEL maintainer="Garrit Franke <[email protected]>"
COPY --from=build /usr/local/cargo/bin/antimony /bin
RUN antimony --version
ENTRYPOINT ["antimony"]