nws-site/Dockerfile

15 lines
176 B
Docker
Raw Permalink Normal View History

2024-05-15 20:12:14 +00:00
FROM rust:1.74.1 as build
ENV PKG_CONFIG_ALLOW_CROSS=1
WORKDIR .
COPY . .
RUN cargo install --path .
ENV RUST_LOG=info
ENV EXPOSE_PORT=80
EXPOSE 80
ENTRYPOINT ["website"]