File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 11target
22Dockerfile
3+ dockerfile
34.dockerignore
45.env
56.git
Original file line number Diff line number Diff line change 1- FROM rust:1.67 as builder
1+ FROM rust:latest as builder
22WORKDIR /app
33COPY . .
4+ # git-fetch-with-cli is a CI bugfix, we should be able to remove it later
45RUN cargo build --release --bin atomic-server --config net.git-fetch-with-cli=true
56
6- # We only need a small runtime for this step, but make sure glibc is installed
7- FROM frolvlad/alpine-glibc:alpine-3.16_glibc-2.34 as runtime
7+ # We only need a small runtime for this step
8+ FROM rust:latest as runtime
89COPY --chmod=0755 --from=builder /app/target/release/atomic-server /atomic-server-bin
910# For a complete list of possible ENV vars or available flags, run with `--help`
1011ENV ATOMIC_STORE_PATH="/atomic-storage/db"
You can’t perform that action at this time.
0 commit comments