diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml new file mode 100644 index 00000000..50c2bd31 --- /dev/null +++ b/.github/workflows/docker.yaml @@ -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 \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..2d307f9c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx:alpine +COPY ping.conf /etc/nginx/conf.d/ping.conf +COPY dist /var/www/html \ No newline at end of file diff --git a/ping.conf b/ping.conf new file mode 100644 index 00000000..b26d65aa --- /dev/null +++ b/ping.conf @@ -0,0 +1,8 @@ +server { + listen 80; + server_name _; + root /var/www/html; + location / { + try_files $uri $uri/ /index.html; + } +}