9 lines
124 B
Text
9 lines
124 B
Text
|
FROM alpine
|
||
|
LABEL author="1Computer1"
|
||
|
|
||
|
RUN apk update
|
||
|
RUN apk add build-base python2
|
||
|
|
||
|
COPY run.sh /var/run/
|
||
|
WORKDIR /var/ws
|