odd-box 0.1.10

a dead simple reverse proxy server and web server
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM rust:latest AS builder

# Install MUSL tools and dependencies
RUN apt-get update && apt-get install -y musl-tools musl-dev

# Add the MUSL target
RUN rustup target add x86_64-unknown-linux-musl

# Set the working directory
WORKDIR /usr/src/odd-box

# Copy the project files
COPY . .

# Build the project with the MUSL target
RUN cargo build --release --target=x86_64-unknown-linux-musl