From 99a9d5350c12bd61f6e090b7dd864ce1332464b4 Mon Sep 17 00:00:00 2001 From: bincooo Date: Thu, 26 Dec 2024 17:35:14 +0800 Subject: [PATCH] update --- deploy/DOckerfile-BL | 3 ++- deploy/Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/deploy/DOckerfile-BL b/deploy/DOckerfile-BL index 869e654..a88a23e 100644 --- a/deploy/DOckerfile-BL +++ b/deploy/DOckerfile-BL @@ -2,7 +2,8 @@ FROM golang:1.23-alpine AS builder WORKDIR /app RUN apk add git make && git clone https://github.com/bincooo/chatgpt-adapter.git . -RUN make install & make build-linux +RUN make install +RUN make build-linux FROM ubuntu:latest diff --git a/deploy/Dockerfile b/deploy/Dockerfile index 381828c..1b690ea 100644 --- a/deploy/Dockerfile +++ b/deploy/Dockerfile @@ -2,7 +2,8 @@ FROM golang:1.23-alpine AS builder WORKDIR /app RUN apk add git make && git clone https://github.com/bincooo/chatgpt-adapter.git . -RUN make install & make build-linux +RUN make install +RUN make build-linux FROM alpine:3.19.0 WORKDIR /app