mirror of
https://github.com/cnotch/ipchub.git
synced 2025-09-26 19:41:18 +08:00
7 lines
114 B
Docker
7 lines
114 B
Docker
FROM alpine:latest
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
COPY bin/docker .
|
|
# Expose ipchub ports
|
|
EXPOSE 554
|
|
CMD ["./ipchub"] |