Skip to content

Instantly share code, notes, and snippets.

@luksamuk
Last active April 28, 2019 23:51
Show Gist options
  • Save luksamuk/dc48d1afa76a6c597e36fd863bf29fad to your computer and use it in GitHub Desktop.
Save luksamuk/dc48d1afa76a6c597e36fd863bf29fad to your computer and use it in GitHub Desktop.
post-docker-travis-commonlisp3
services:
- docker
script:
- make docker-build
- make docker-test
FROM luksamuk/roswell-qlot
WORKDIR /app
COPY . .
RUN qlot install
.PHONY: docker-build docker-run
docker-build:
docker build --rm -t cl-jackc .
docker-test:
docker run --rm -t --entrypoint=./run-tests.sh cl-jackc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment