2022-11-12 00:41:51 +01:00
|
|
|
FROM rust 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:41:51 +01:00
|
|
|
FROM archlinux
|
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" ]
|