# composer install FROM liuchong/rustup:nightly as build COPY ./ /app/ RUN cargo build cargo r --release FROM alpine as spotify_intersect WORKDIR /srv/spotify_intersect COPY --from=build /app/target/release/spotify_intersect /srv/spotify_intersect COPY .env /srv/spotify_intersect/.env CMD ./spotify_intersect