Skip to content

Instantly share code, notes, and snippets.

@engleangs
Created January 18, 2022 17:20
Show Gist options
  • Save engleangs/c4311e9322cbf78719bc50480a976989 to your computer and use it in GitHub Desktop.
Save engleangs/c4311e9322cbf78719bc50480a976989 to your computer and use it in GitHub Desktop.
FROM openjdk:8
WORKDIR /smppsim
COPY ./conf /smppsim/conf
COPY ./docs /smppsim/docs
COPY ./lib /smppsim/lib
COPY ./www /smppsim/www
COPY ./deliver_messages.csv /smppsim/
COPY ./smppsim.jar /smppsim/
EXPOSE 2775 88
CMD ["java", "-Djava.net.preferIPv4Stack=true", "-Djava.util.logging.config.file=/smppsim/conf/logging.properties", "-jar", "/smppsim/smppsim.jar", "/smppsim/conf/smppsim.props"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment