mirror of
https://github.com/jaywcjlove/linux-command.git
synced 2025-12-20 02:17:56 +08:00
8 lines
274 B
Docker
8 lines
274 B
Docker
# https://lipanski.com/posts/smallest-docker-image-static-website
|
|
# https://github.com/forksss/docker-static-website
|
|
FROM wcjiang/docker-static-website:latest
|
|
|
|
# Copy the static website
|
|
# Use the .dockerignore file to control what ends up inside the image!
|
|
COPY ./.deploy .
|