nws-site/Dockerfile
Nicholas Orlowsky 1fe4d33a9b
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
update rust ver
2025-04-01 11:51:55 -04:00

15 lines
174 B
Docker

FROM rust:1.82 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"]