11 lines
194 B
Docker
11 lines
194 B
Docker
|
FROM alpine
|
||
|
MAINTAINER Disassembler <disassembler@dasm.cz>
|
||
|
|
||
|
RUN \
|
||
|
# Install XML libs
|
||
|
apk --no-cache add libxml2 libxslt
|
||
|
|
||
|
RUN \
|
||
|
# Install Python2 runtime
|
||
|
apk --no-cache add python2
|