blob: 03d4892a365802789dddfac15cda9b8f5fc1cde8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
FROM i386/alpine
RUN apk update
RUN apk add --no-cache build-base libpng-dev wine ncurses freetype
RUN apk add binutils-arm-none-eabi --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/community/ --allow-untrusted
ENV BUSYBOX 1
WORKDIR /app
CMD ["/bin/sh"]
|