summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: b8697acb25ee65fbcc3ea02e56403929f3a31452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM rust:alpine
WORKDIR /root
ENTRYPOINT  ["target/release/hx"]
LABEL org.label-schema.name="hx" \
    org.label-schema.description="Futuristic take on hexdump, made in rust" \
    org.label-schema.url="https://hub.docker.com/r/sitkevij/hx" \
    org.label-schema.usage="https://github.com/sitkevij/hex/blob/master/README.md" \
    org.label-schema.vcs-url="https://github.com/sitkevij/hex" \
    org.label-schema.vendor="sitkevij" \
    org.label-schema.version="latest" \
    maintainer="https://github.com/sitkevij"
ENV PATH=/root/.cargo/bin:$PATH
COPY . .
RUN cargo build --release