27 lines
575 B
Docker
27 lines
575 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM rust:bullseye AS builder
|
|
WORKDIR /usr/src/ewp
|
|
COPY . .
|
|
|
|
RUN cargo install --path .
|
|
|
|
|
|
FROM debian:bullseye-slim
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y ca-certificates
|
|
|
|
RUN mkdir /app
|
|
WORKDIR /app
|
|
|
|
COPY --from=builder /usr/local/cargo/bin/ewp /app/ewp
|
|
COPY --from=builder /usr/src/ewp/LICENSE /app/LICENSE
|
|
COPY --from=builder /usr/src/ewp/static /app/static
|
|
COPY --from=builder /usr/src/ewp/templates /app/templates
|
|
COPY --from=builder /usr/src/ewp/data /app/data
|
|
|
|
RUN mkdir /app/config
|
|
RUN touch /app/config/config.toml
|
|
|
|
CMD [ "./ewp" ]
|