8 lines
223 B
Docker
8 lines
223 B
Docker
FROM debian:bullseye-slim
|
|
RUN apt update && apt install -y \
|
|
chicken-bin \
|
|
gcc \
|
|
make \
|
|
;
|
|
RUN chicken-install utf8 lowdown sxml-transforms clojurian symbol-utils scss srfi-1 srfi-13 srfi-14 ersatz
|
|
USER $UID
|