with musl image
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
Kasper Juul Hermansen 2022-08-13 12:50:44 +02:00
parent 8e8bf2cdc3
commit 4ca7dfbbd7
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23
2 changed files with 3 additions and 4 deletions

View File

@ -74,7 +74,7 @@ steps:
from_secret: docker_password
depends_on:
- "load_secret"
#- "server"
- "server"
- name: send telegram notification
image: appleboy/drone-telegram

View File

@ -1,6 +1,6 @@
FROM rust:1.62.1-slim-bullseye as base
#as base
RUN rustup target add x86_64-unknown-linux-musl
RUN apt-get update && apt-get upgrade -y
RUN apt-get install libssl-dev
@ -8,8 +8,7 @@ RUN apt-get install -y -q build-essential curl git pkg-config
WORKDIR /app/cuddle/
RUN cargo install --git https://git.front.kjuulh.io/kjuulh/cuddle.git cuddle_cli
RUN export PATH="$PATH:/usr/local/cargo/bin/"
RUN cargo install --target x86_64-unknown-linux-musl --git https://git.front.kjuulh.io/kjuulh/cuddle.git cuddle_cli
FROM docker:stable-dind