init project
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM rust:latest
|
||||
|
||||
MAINTAINER Valentin SORLIN
|
||||
|
||||
USER root
|
||||
|
||||
ENV ROCKET_ADDRESS=0.0.0.0
|
||||
ENV ROCKET_PORT=80
|
||||
|
||||
WORKDIR /usr/src/myapp
|
||||
|
||||
COPY ./liblaszip.so /lib/liblaszip.so
|
||||
|
||||
RUN rustup default nightly
|
||||
RUN cargo install cargo-watch
|
||||
RUN cargo install diesel_cli --no-default-features --features postgres
|
||||
|
||||
CMD ["cargo", "watch", "-x", "run", "-i", "/usr/src/myapp/tmp", "--why"]
|
||||
Reference in New Issue
Block a user