18 lines
265 B
Docker
18 lines
265 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache \
|
|
build-base \
|
|
cmake \
|
|
pkgconfig \
|
|
bash
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
COPY --chmod=755 docker/dropshell_alpine/_create_dropshell.sh /scripts/
|
|
|
|
RUN rm -rf build
|
|
|
|
CMD ["/bin/bash","/scripts/_create_dropshell.sh"]
|