flog/Dockerfile
2023-01-13 17:24:30 +01:00

9 lines
184 B
Docker

FROM rust:1.66.0-alpine3.17
COPY ./flog /opt/flog
WORKDIR /opt/flog
VOLUME ["/opt/flog/html"]
VOLUME ["/opt/flog/templates"]
RUN apk add build-base make bash
RUN cargo build
EXPOSE 80