You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
FROM alpine:latest
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
RUN adduser -S -D -H -h /app -s /sbin/nologin -u 1000 app
|
|
|
|
|
|
|
|
|
|
ADD api2gpt-mid /app/server/
|
|
|
|
|
|
|
|
|
|
CMD ["/app/server/api2gpt-mid"]
|