mirror of
https://github.com/heiher/natmap.git
synced 2026-05-07 22:17:17 +08:00
14 lines
332 B
Docker
14 lines
332 B
Docker
FROM ubuntu:latest
|
|
ARG NATMAP_ARCH
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/heiher/natmap"
|
|
|
|
RUN apt update \
|
|
&& apt upgrade -y \
|
|
&& apt install -y curl
|
|
|
|
WORKDIR /opt
|
|
COPY ./tmp/artifact/natmap-linux-${NATMAP_ARCH}/natmap-linux-${NATMAP_ARCH} /opt/natmap
|
|
RUN chmod +x /opt/natmap
|
|
|
|
ENTRYPOINT ["/opt/natmap"] |