8 lines
183 B
Text
8 lines
183 B
Text
|
FROM alpine:edge
|
||
|
|
||
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
|
||
|
apk update && \
|
||
|
apk add idris@testing
|
||
|
|
||
|
COPY run.sh /var/run/
|