We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74e0e5d commit 7e859b1Copy full SHA for 7e859b1
Dockerfile
@@ -8,18 +8,18 @@ RUN apt-get update \
8
&& apt-get install -y libssl-dev pkg-config --no-install-recommends \
9
&& rm -rf /var/lib/apt/lists/*
10
11
-RUN rustup install nightly
+RUN rustup install nightly-2019-07-09
12
13
COPY ./Cargo.lock ./Cargo.lock
14
COPY ./Cargo.toml ./Cargo.toml
15
16
-RUN cargo +nightly build
+RUN cargo +nightly-2019-07-09 build
17
18
COPY ./Rocket.toml ./Rocket.toml
19
COPY ./src ./src
20
21
RUN touch src/main.rs
22
23
24
FROM debian:stretch-slim
25
WORKDIR /enokey
0 commit comments