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 apk add --no-cache tzdata
|
|
ENV TZ Asia/Shanghai
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
RUN adduser -S -D -H -h /app -s /sbin/nologin -u 1000 app
|
|
|
|
ADD api2gpt-mid /app/
|
|
|
|
CMD ["/app/api2gpt-mid"] |