mirror of
https://codeberg.org/icewind/shelve.git
synced 2026-06-03 12:04:09 +02:00
frontend
This commit is contained in:
parent
317d2c2020
commit
91a9a6b486
7 changed files with 1118 additions and 28 deletions
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
FROM ekidd/rust-musl-builder AS build
|
||||
|
||||
ADD . ./
|
||||
RUN sudo chown -R rust:rust .
|
||||
|
||||
RUN cargo build --release
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
COPY --from=build /home/rust/src/target/x86_64-unknown-linux-musl/release/sync /
|
||||
EXPOSE 80
|
||||
|
||||
CMD ["/shelve"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue