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.
11 lines
405 B
11 lines
405 B
FROM scratch
|
|
|
|
ADD https://git.gxxhygroup.com/dark/dockerfile/-/raw/master/ca-certificates.crt?inline=false /etc/ssl/certs/ca-certificates.crt
|
|
ADD https://git.gxxhygroup.com/dark/dockerfile/-/raw/master/Shanghai?inline=false /usr/share/zoneinfo/Asia/Shanghai
|
|
ENV TZ=Asia/Shanghai
|
|
EXPOSE 8181
|
|
WORKDIR /app
|
|
COPY ./etc /app/etc
|
|
COPY ./minio-api /app/minio-api
|
|
|
|
CMD ["./minio-api", "-f", "etc/minio-api.yaml"]
|
|
|