mirror of
https://github.com/bolucat/Archive.git
synced 2025-12-24 13:28:37 +08:00
12 lines
242 B
Docker
12 lines
242 B
Docker
FROM debian:12-slim
|
|
|
|
RUN apt update && apt install -y --no-install-recommends ca-certificates curl glibc-source libc6
|
|
|
|
WORKDIR /bin/
|
|
|
|
# Copy the pre-built binary file from the previous stage
|
|
COPY ehco .
|
|
RUN chmod +x ehco
|
|
|
|
ENTRYPOINT ["ehco"]
|