docker-static-website

一个极小的静态页面的docker,最新的版本已经来到了(~80kb)

开源地址

构建镜像

FROM registry.cn-hangzhou.aliyuncs.com/buyfakett/docker-static-website
COPY ./dist .

快速启动

version: "3.9"
services:
  webserver:
    image: lipanski/docker-static-website:latest
    restart: always
    ports:
      - "3000:3000"
    volumes:
      - /some/local/path:/home/static