You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
256 B
Docker

FROM ubuntu:18.04
WORKDIR /srv
COPY . .
RUN apt-get update && apt-get install curl -y
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
RUN rustup override set nightly
RUN cargo build --release
CMD ./target/release/pullup-counter