mirror of
https://github.com/pesde-pkg/pesde.git
synced 2025-01-05 15:49:09 +00:00
9 lines
95 B
Text
9 lines
95 B
Text
|
FROM rust:1.76
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
WORKDIR /registry
|
||
|
|
||
|
RUN cargo install --path .
|
||
|
|
||
|
CMD ["pesde-registry"]
|