fix #33 missing libpcre3 #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
jobs: | |
build_container_with_docker: | |
runs-on: ubuntu-latest | |
name: Build container with Docker | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Build docker image and run a smoke test | |
id: build_docker_image | |
run: | | |
DOCKER_BUILDKIT=1 docker build -f Dockerfile -t warp:latest . | |
docker run -d -p 5000:5000 --name warp warp:latest | |
sleep 10 | |
docker rm -f warp |