Files
iot-cloud-api/Dockerfile
Tobias Maier 017cfb84f9
All checks were successful
Build Project / test (push) Successful in 5m40s
added openssl
2023-09-25 07:57:54 +00:00

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" ]