-
Notifications
You must be signed in to change notification settings - Fork 198
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mateusz Urbanek <[email protected]>
- Loading branch information
Showing
2 changed files
with
20 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,47 @@ | ||
ARG ALPINE_VERSION=edge | ||
|
||
FROM alpine:$ALPINE_VERSION AS builder | ||
# Stage 1: Build the application | ||
FROM docker.io/library/rust:1.80-alpine AS builder | ||
|
||
# Update Alpine packages and install build dependencies | ||
RUN apk update && apk add --no-cache --virtual .build-dependencies \ | ||
cargo \ | ||
cmake \ | ||
build-base \ | ||
file \ | ||
libgcc \ | ||
musl-dev \ | ||
protobuf \ | ||
protobuf-dev \ | ||
rust | ||
|
||
RUN apk add --no-cache llvm-libunwind \ | ||
pkgconfig | ||
musl-dev \ | ||
protobuf \ | ||
protobuf-dev | ||
|
||
# Copy the source code into the image | ||
COPY . /usr/src/sozu | ||
WORKDIR /usr/src/sozu | ||
|
||
# Build the application in release mode with a frozen lockfile | ||
RUN cargo vendor --locked | ||
RUN cargo build --release --frozen | ||
|
||
FROM alpine:$ALPINE_VERSION AS bin | ||
# Stage 2: Create the runtime environment | ||
FROM docker.io/library/alpine:3.20 AS bin | ||
|
||
# Expose ports for the application | ||
EXPOSE 80 | ||
EXPOSE 443 | ||
|
||
# Define volumes for configuration and runtime state | ||
VOLUME /etc/sozu | ||
VOLUME /run/sozu | ||
|
||
# Create a directory for persistent state | ||
RUN mkdir -p /var/lib/sozu | ||
|
||
# Install runtime dependencies | ||
RUN apk update && apk add --no-cache \ | ||
llvm-libunwind \ | ||
libgcc \ | ||
ca-certificates | ||
|
||
# Copy the built binary from the builder stage | ||
COPY --from=builder /usr/src/sozu/target/release/sozu /usr/local/bin/sozu | ||
|
||
# Copy the default configuration file | ||
COPY os-build/config.toml /etc/sozu/config.toml | ||
|
||
# Set the default entry point to the binary and provide default command | ||
# to start the application with a specific config | ||
ENTRYPOINT ["/usr/local/bin/sozu"] | ||
CMD ["start", "-c", "/etc/sozu/config.toml"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters