You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
335 B
Docker
8 lines
335 B
Docker
|
|
# Dockerfile PyOxidizer 0.22.0 Build Environment
|
|
FROM rust:1.63.0-bullseye
|
|
WORKDIR /home
|
|
RUN apt update && apt install musl-tools python3-dev libpq-dev -y
|
|
RUN rustup target add x86_64-unknown-linux-musl
|
|
# RUN cargo install --git https://github.com/indygreg/PyOxidizer.git --branch stable pyoxidizer
|
|
RUN cargo install pyoxidizer@0.22.0 |