Files
confetti/.woodpecker/Dockerfile
T
uelen 6c6453d513
ci/woodpecker/push/test-workflow Pipeline failed
CI fun 15
2026-06-03 15:29:21 -07:00

16 lines
262 B
Docker

FROM alpine:3.14
RUN apk update
RUN apk upgrade
RUN apk add rustup postgresql shadow bash
RUN useradd -ms /bin/bash test
USER test
WORKDIR /home/test
SHELL ["/bin/bash", "-c"]
RUN rustup-init -y
ENV PATH="/home/test/.cargo/bin:foobug:$PATH"
RUN echo "$PATH"