mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-04 13:52:26 +08:00
11 lines
212 B
Docker
11 lines
212 B
Docker
FROM alpine
|
|
MAINTAINER deepzz <deepzz.qi@gmail.com>
|
|
|
|
RUN apk add --update --no-cache ca-certificates
|
|
ADD static/tzdata/Shanghai /etc/localtime
|
|
|
|
COPY . /eiblog
|
|
EXPOSE 9000
|
|
WORKDIR /eiblog
|
|
CMD ["sh","-c","eiblog"]
|