chaospott-status/Dockerfile
m0veax 4b85aa9927 add dockerfile to serve content on port 3000
add a println! statement to check that the service starts serving
2024-05-24 00:18:27 +02:00

9 lines
126 B
Docker

FROM rust:1.75.0
WORKDIR /usr/src/chaospott-status
COPY . .
RUN cargo install --path .
EXPOSE 3000
CMD ["chaospott-status"]