Files
iot-cloud-api/Dockerfile
Tobias Maier 7d542aef8f
All checks were successful
Build Project / test (push) Successful in 5m43s
Fixed dockerbuild
2025-02-09 16:18:32 +00:00

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