Add dev containers, musl build

This commit is contained in:
Juno Takano 2026-03-07 17:28:47 -03:00
commit d246c7c598
12 changed files with 117 additions and 49 deletions

View file

@ -0,0 +1,13 @@
FROM docker.io/library/rust:alpine
MAINTAINER Juno Takano juno@jutty.dev
ENV DEBUG=debug
# Install
COPY en /usr/local/bin/en
# Describe
RUN sha256sum $(which en)
# Launch
WORKDIR /root
CMD ["en", "-p", "80"]