pastebin/Dockerfile
Kaczanowski Mateusz 6133cf9a46 Initial commit
2020-05-09 00:10:11 +02:00

11 lines
256 B
Docker

FROM rustlang/rust:nightly
RUN apt-get update && apt-get install -y apt-utils software-properties-common lsb-release
RUN bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
WORKDIR /usr/src/pastebin
COPY . .
RUN cargo install --path .
CMD ["pastebin"]