7 lines
159 B
Docker
7 lines
159 B
Docker
FROM debian:latest
|
|
ADD target/release/iot-cloud /iot-cloud
|
|
RUN apt update && apt upgrade -y && apt install openssl -y
|
|
|
|
ENV RUST_LOG=debug
|
|
|
|
CMD [ "/iot-cloud" ] |