aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: f504720692f4f6dce66133ecf64cb9ef6debf5e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rust:1.60

WORKDIR /app

COPY Cargo.toml .

RUN cargo build --release

COPY target/release/* .

EXPOSE 3000

CMD ["./spacebutton"]