mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-04 22:02:26 +08:00
11 lines
188 B
Docker
11 lines
188 B
Docker
FROM ubuntu:trusty
|
|
MAINTAINER deepzz <deepzz.qi@gmail.com>
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y ca-certificates
|
|
|
|
COPY . /eiblog
|
|
EXPOSE 9000
|
|
WORKDIR /eiblog
|
|
ENTRYPOINT ["./eiblog"]
|