8 lines
173 B
Docker
8 lines
173 B
Docker
FROM debian:bookworm
|
|
ADD target/release/iot-cloud /iot-cloud
|
|
RUN apt update && apt upgrade -y && apt install openssl -y
|
|
|
|
ENV RUST_LOG=debug
|
|
|
|
EXPOSE 8080
|
|
CMD [ "/iot-cloud" ] |