Files
iot-cloud-api/Dockerfile
Tobias Maier 1466075b7b
All checks were successful
Build Project / test (push) Successful in 5m29s
expose port 8080
2023-09-26 21:24:09 +00:00

8 lines
173 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
EXPOSE 8080
CMD [ "/iot-cloud" ]