mirror of
https://github.com/zerotier/pylon.git
synced 2026-05-22 16:28:21 -07:00
Merge Dockerization commit
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
FROM debian:bookworm-slim as build
|
||||
|
||||
COPY . /code
|
||||
WORKDIR /code
|
||||
|
||||
RUN apt-get update -qq && apt-get install -y \
|
||||
build-essential git make pkg-config cmake libssl-dev
|
||||
|
||||
RUN make release
|
||||
|
||||
FROM debian:bookworm-slim
|
||||
COPY --from=build /code/pylon /usr/local/bin
|
||||
ENTRYPOINT [ "/usr/local/bin/pylon" ]
|
||||
Reference in New Issue
Block a user