We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 477798a commit bd84f32Copy full SHA for bd84f32
‎Dockerfile
@@ -2,8 +2,6 @@ FROM rust:1.65 as builder
2
WORKDIR /app
3
COPY Cargo.toml Cargo.toml
4
COPY src src
5
-RUN cargo build --target x86_64-unknown-linux-musl --release
6
-FROM scratch
7
-COPY --from=builder /app/target/release/chatgpt-proxy-server /usr/local/bin/chatgpt-proxy-server
+RUN cargo build --release
8
EXPOSE 3000
9
-CMD ["chatgpt-proxy-server"]
+CMD ["./target/release/chatgpt-proxy-server"]
0 commit comments