This repository has been archived on 2021-10-25. You can view files and clone it, but cannot push or open issues/pull-requests.
|
FROM rust:1.54
|
|
|
|
RUN apt update && \
|
|
apt install -y --no-install-recommends \
|
|
musl-dev \
|
|
musl-tools \
|
|
libpq-dev \
|
|
libssl-dev && \
|
|
rustup target add x86_64-unknown-linux-musl
|
|
|
|
WORKDIR /usr/src/app
|