Skip to content

Commit a5924f3

Browse files
authored
Update debian dockerfile (#39)
1 parent 36e5356 commit a5924f3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scripts/docker/debian/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust AS builder
1+
FROM rust:1.36 AS builder
22
# show backtraces
33
ENV RUST_BACKTRACE 1
44

@@ -25,7 +25,11 @@ EXPOSE 8080 8545 8180
2525

2626
WORKDIR /home/parity
2727

28+
RUN mkdir -p /home/parity/keys/prv/
29+
RUN mkdir -p /home/parity/node0/network/
30+
RUN mkdir -p /home/parity/node0/keys/prv
2831
RUN mkdir -p /home/parity/.local/share/io.parity.ethereum/
32+
RUN chown -R parity:parity /home/parity
2933
COPY --from=builder /parity/target/release/parity ./
3034

3135
ENTRYPOINT ["./parity"]

0 commit comments

Comments
 (0)