source: josm/trunk/native/docker-test.sh@ 18856

Last change on this file since 18856 was 18801, checked in by taylor.smock, 13 months ago

Fix #22832: Code cleanup and some simplification, documentation fixes (patch by gaben)

There should not be any functional changes in this patch; it is intended to do
the following:

  • Simplify and cleanup code (example: Arrays.asList(item) -> Collections.singletonList(item))
  • Fix typos in documentation (which also corrects the documentation to match what actually happens, in some cases)
File size: 177 bytes
Line 
1#!/bin/bash
2
3docker build . -t josm/josm
4mkdir -p test/report
5docker run -it --name josm -v "$(pwd)"/test/report:/josm/test/report josm/josm
6docker rm josm
7docker rmi josm/josm
Note: See TracBrowser for help on using the repository browser.