mirror of
https://github.com/pesde-pkg/pesde.git
synced 2024-12-12 11:00:36 +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"]
|