Updated docker container
This commit is contained in:
parent
bdc39e55c8
commit
45af5588cc
1 changed files with 3 additions and 3 deletions
|
|
@ -9,12 +9,12 @@ RUN cargo build --release
|
||||||
# Runtime stage
|
# Runtime stage
|
||||||
FROM debian:sid
|
FROM debian:sid
|
||||||
|
|
||||||
WORKDIR /app/data
|
WORKDIR /app
|
||||||
|
|
||||||
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
COPY --from=builder /app/target/release/iota ..
|
COPY --from=builder /app/target/release/iota .
|
||||||
|
|
||||||
EXPOSE 1984
|
EXPOSE 1984
|
||||||
|
|
||||||
CMD ["../iota"]
|
CMD ["iota"]
|
||||||
Loading…
Reference in a new issue