Skip to content

Instantly share code, notes, and snippets.

@ShawnSWu
Created June 14, 2021 14:29
Show Gist options
  • Save ShawnSWu/a16a797c19e94baac29f55410a4bf785 to your computer and use it in GitHub Desktop.
Save ShawnSWu/a16a797c19e94baac29f55410a4bf785 to your computer and use it in GitHub Desktop.
FROM tomcat:8.5.47-jdk8-openjdk
MAINTAINER [email protected]
EXPOSE 8080
WORKDIR /myapp
COPY application.jar /myapp/application
ENV TZ=Asia/Taipei
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
CMD java -jar application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment