7 lines
305 B
Docker
7 lines
305 B
Docker
FROM docker.1ms.run/library/alpine:3.19
|
|
RUN sed -i 's|dl-cdn.alpinelinux.org|mirrors.tuna.tsinghua.edu.cn|g' /etc/apk/repositories
|
|
RUN apk add --no-cache python3 py3-pip bash
|
|
COPY workshop-baker/target/x86_64-unknown-linux-musl/debug/workshop-baker /baker
|
|
RUN chmod +x /baker
|
|
ENTRYPOINT ["/bin/sh", "-c"]
|