Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile #52

Merged
merged 2 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 6 additions & 13 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
## Build stage
FROM rust:1.79-alpine3.20 as builder

RUN rustup target add x86_64-unknown-linux-musl

RUN apk add musl-dev
# Build stage
FROM rust:1.80.0-slim-bookworm as builder

WORKDIR /jnv

COPY . /jnv
RUN cargo build --release

RUN cargo build --target=x86_64-unknown-linux-musl --release

## Final image

FROM scratch
# Final stage
FROM debian:bookworm-slim

COPY --from=builder /jnv/target/x86_64-unknown-linux-musl/release/jnv /bin/jnv
COPY --from=builder /jnv/target/release/jnv /bin/jnv

ENTRYPOINT ["/bin/jnv"]
22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,33 @@ See [package entry on search.nixos.org](https://search.nixos.org/packages?channe
nix-shell -p jnv
```

### Cargo
### Docker

Build
(In the near future, the image will be available on something of registries)

```bash
cargo install jnv
docker build -t jnv .
```

## Examples
And Run
(The following commad is just an example. Please modify the path to the file you want to mount)

```bash
cat data.json | jnv
docker run -it --rm -v $(pwd)/debug.json:/jnv/debug.json jnv /jnv/debug.json
```

Or
### Cargo

```bash
cargo install jnv
```

## Examples

```bash
cat data.json | jnv
# or
jnv data.json
```

Expand Down
Loading