huuuu / Dockerfile
jammss's picture
Update Dockerfile
2013feb verified
raw
history blame
570 Bytes
FROM rust:1.65 as builder
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/fuergaosi233/chatgpt-proxy-server.git
RUN cargo new --bin app
WORKDIR /app
COPY Cargo.toml Cargo.toml
# Dry running build command to make Docker cache layer
RUN cargo build --release
RUN rm src/*.rs
COPY src src
RUN cargo build --release
# Use slim image to place build result
FROM debian:stable-slim
RUN apt-get update && apt-get install -y ca-certificates
COPY --from=builder ./app/target/release/chatgpt-proxy-server .
EXPOSE 3000
CMD ["./chatgpt-proxy-server"]