blob: 76bf6176dac5a7b1e7d0cee6159b71e9de9dd8c1 (
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/testing/ --allow-untrusted
ENV BUSYBOX 1
WORKDIR /app
CMD ["/bin/sh"]
|