8 lines
113 B
Docker
8 lines
113 B
Docker
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add --no-cache zip
|
||
|
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|