Mercurial > hg > tony
comparison deploy/linux/docker/Dockerfile_test_deb.in @ 625:72f85d34a922
Merge
author | Chris Cannam |
---|---|
date | Thu, 10 Oct 2019 13:39:08 +0100 |
parents | cccac82528b9 |
children |
comparison
equal
deleted
inserted
replaced
624:bd18e52aa382 | 625:72f85d34a922 |
---|---|
1 FROM ubuntu:18.04 | |
2 | |
3 # Ensure that everything subsequent is re-run when a new revision is | |
4 # being built (rather than being cached) - so as to avoid potential | |
5 # mismatches between results of apt-get update and the package | |
6 # dependency installation itself | |
7 RUN echo [[REVISION]] | |
8 | |
9 RUN apt-get update | |
10 ADD output/tony_[[RELEASE]]_amd64.deb tony_[[RELEASE]]_amd64.deb | |
11 RUN apt install -y ./tony_[[RELEASE]]_amd64.deb | |
12 RUN /usr/bin/tony --version | |
13 |