You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- FROM alpine:3.16.2
- WORKDIR /home
-
- # 修改alpine源为上海交通大学
- RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.sjtug.sjtu.edu.cn/g' /etc/apk/repositories && \
- apk update && \
- apk upgrade && \
- apk add --no-cache ca-certificates && update-ca-certificates && \
- apk add --update tzdata && \
- rm -rf /var/cache/apk/*
-
-
- COPY pcm-ceph /home/
- COPY etc/pcmceph.yaml /home/
-
- ENV TZ=Asia/Shanghai
-
- EXPOSE 2008
-
- ENTRYPOINT ./pcm-ceph-rpc -f pcmceph.yaml
|