Files
iot-cloud-api/Dockerfile
Tobias Maier b03801e12f
All checks were successful
Build Project / test (push) Successful in 5m59s
Run bullseye
2023-09-25 08:11:16 +00:00

7 lines
161 B
Docker

FROM debian:bullseye
ADD target/release/iot-cloud /iot-cloud
RUN apt update && apt upgrade -y && apt install openssl -y
ENV RUST_LOG=debug
CMD [ "/iot-cloud" ]