me-site/Dockerfile

16 lines
198 B
Text
Raw Normal View History

2022-11-12 00:54:55 +01:00
FROM rust:buster as builder
2022-08-23 02:26:24 +02:00
2022-11-12 00:41:51 +01:00
COPY . /app
2022-08-23 02:26:24 +02:00
2022-11-12 00:44:36 +01:00
WORKDIR /app
2022-11-12 00:41:51 +01:00
RUN cargo build --release
2022-08-23 02:26:24 +02:00
2022-11-12 00:54:55 +01:00
FROM debian
2022-08-23 02:26:24 +02:00
2022-11-12 00:41:51 +01:00
COPY --from=builder /app/target/release/me-site /bin/me-site
2022-08-23 02:26:24 +02:00
2022-11-12 00:41:51 +01:00
VOLUME /config
2022-09-09 16:40:44 +02:00
2022-11-12 00:41:51 +01:00
CMD [ "./bin/me-site" ]