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.
9 lines
255 B
9 lines
255 B
FROM alpine
|
|
MAINTAINER wenyin
|
|
WORKDIR /opt/sfms3.0
|
|
RUN apk --update add nginx
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
# 将dist文件中的内容复制到 /opt/sfms3.0 这个目录下面
|
|
COPY sfms3.0/ /opt/sfms3.0
|
|
EXPOSE 80
|
|
CMD ["nginx","-g","daemon off;"]
|
|
|