Skip to content

Update README.md

Update README.md #18

Workflow file for this run

name: Docker Image Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker build -f docker/Dockerfile -t wechatrobot:$(date +%s) .
- name: Build the native-image Docker image
run: docker build -f docker/native-image-Dockerfile -t wechatrobot-native:$(date +%s) .