2018-05-07 14:21:09 +02:00
|
|
|
FROM alpine
|
2018-09-03 22:12:08 +02:00
|
|
|
LABEL maintainer="Disassembler <disassembler@dasm.cz>"
|
2018-05-07 14:21:09 +02:00
|
|
|
|
|
|
|
RUN \
|
|
|
|
# Install XML libs
|
|
|
|
apk --no-cache add libxml2 libxslt
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
# Install Python3 runtime
|
|
|
|
apk --no-cache add python3 \
|
|
|
|
&& ln -s /usr/bin/python3 /usr/bin/python
|