chore: update Dockerfile

This commit is contained in:
jaywcjlove 2022-06-24 13:32:36 +08:00
parent d35ab4096e
commit 93e6ec76fc
2 changed files with 8 additions and 11 deletions

View File

@ -67,9 +67,9 @@ jobs:
```
```bash
docker run --name awesome-mac --rm -d -p 9881:80 wcjiang/awesome-mac:${{steps.changelog.outputs.version}}
docker run --name awesome-mac --rm -d -p 9881:3000 wcjiang/awesome-mac:${{steps.changelog.outputs.version}}
# Or
docker run --name awesome-mac -itd -p 9881:80 wcjiang/awesome-mac:${{steps.changelog.outputs.version}}
docker run --name awesome-mac -itd -p 9881:3000 wcjiang/awesome-mac:${{steps.changelog.outputs.version}}
```
Visit the following URL in your browser

View File

@ -1,10 +1,7 @@
FROM nginx:1-alpine
# https://lipanski.com/posts/smallest-docker-image-static-website
# https://github.com/lipanski/docker-static-website
FROM lipanski/docker-static-website:latest
ENV APPDIR /usr/share/nginx/html
RUN mkdir -p $APPDIR
RUN cat /etc/nginx/conf.d/default.conf
WORKDIR $APPDIR
ADD ./dist /usr/share/nginx/html
# Copy the static website
# Use the .dockerignore file to control what ends up inside the image!
COPY ./dist .