en/tests/containers/Containerfile.alpine
jutty 6c6e9a3f7e
Some checks failed
/ verify (push) Has been cancelled
Fix test containers failing to respond
2026-03-07 15:13:12 -03:00

23 lines
561 B
Text

FROM alpine:latest
MAINTAINER Juno Takano juno@jutty.dev
ENV DEBUG=debug
ENV TAG=${TAG:-latest}
# Setup tooling
RUN apk add curl clang git file
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
# Install
RUN git clone -b "$TAG" --single-branch https://codeberg.org/jutty/en /build
RUN <<EOF
cd /build && /root/.cargo/bin/cargo build --locked --release
mv /build/target/release/en /usr/local/bin/en
rm -rf /build
EOF
# Describe
RUN file $(which en) && sha256sum $(which en)
# Launch
WORKDIR /root
CMD ["en", "-p", "80"]