Skip to content

Instantly share code, notes, and snippets.

@marcelo-ochoa
Created August 10, 2020 13:34
Show Gist options
  • Save marcelo-ochoa/0fc3f61836a256928416083efa403ee4 to your computer and use it in GitHub Desktop.
Save marcelo-ochoa/0fc3f61836a256928416083efa403ee4 to your computer and use it in GitHub Desktop.
Dockerfile for building swingbench docker image
# usage note:
# docker build -t swingbench:2.6.0 .
FROM adoptopenjdk/openjdk8
WORKDIR /opt
ADD https://github.com/domgiles/swingbench-public/releases/download/production/swingbenchlatest.zip /tmp
RUN jar xvf /tmp/swingbenchlatest.zip && chmod +x /opt/swingbench/bin/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment