10 lines
196 B
Docker
10 lines
196 B
Docker
FROM archlinux$
|
|
WORKDIR /website$
|
|
|
|
COPY ./site /website/target/site$
|
|
COPY ./vvsite /website/vvsite$
|
|
COPY ./Cargo.toml /website/Cargo.toml$
|
|
|
|
RUN chmod +x /website/vvsite$
|
|
CMD ["/website/vvsite"]$
|