12 lines
255 B
Docker
12 lines
255 B
Docker
FROM debian:bullseye-slim
|
|
|
|
RUN apt update \
|
|
&& apt install --no-install-recommends -y libext2fs2 \
|
|
parted \
|
|
bash
|
|
|
|
COPY docker/entrypoint.sh /tmp
|
|
COPY src/ /tmp
|
|
WORKDIR /tmp
|
|
#CMD bash
|
|
CMD /tmp/entrypoint.sh
|