add docker integration

This commit is contained in:
liangping 2021-08-27 12:40:17 +08:00
parent 5de2c39d41
commit 6d63a46901
3 changed files with 45 additions and 0 deletions

34
.github/workflows/docker.yaml vendored Normal file
View File

@ -0,0 +1,34 @@
name: docker
on:
push:
branches:
- 'master'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
# -
# name: Set up QEMU
# uses: docker/setup-qemu-action@v1
# -
# name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v1
- name: Install
run: yarn install
- name: Build
run: yarn run vue-cli-service build
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: yaoling/wallet:latest

3
Dockerfile Normal file
View File

@ -0,0 +1,3 @@
FROM nginx:alpine
COPY ping.conf /etc/nginx/conf.d/ping.conf
COPY dist /var/www/html

8
ping.conf Normal file
View File

@ -0,0 +1,8 @@
server {
listen 80;
server_name _;
root /var/www/html;
location / {
try_files $uri $uri/ /index.html;
}
}