Steve/EV Dashboard/nginx 도커파일 및 설정파일 추가

This commit is contained in:
byun
2026-05-26 21:10:16 +09:00
parent 8617642fae
commit 607e4d758b
9 changed files with 402 additions and 0 deletions

25
steve/Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
FROM eclipse-temurin:21-jdk
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
MAINTAINER Ling Li
# Download and install dockerize.
# Needed so the web container will wait for MariaDB to start.
ENV DOCKERIZE_VERSION v0.19.0
RUN curl -sfL https://github.com/powerman/dockerize/releases/download/"$DOCKERIZE_VERSION"/dockerize-`uname -s`-`uname -m` | install /dev/stdin /usr/local/bin/dockerize
EXPOSE 8180
EXPOSE 8443
WORKDIR /code
VOLUME ["/code"]
# Copy the application's code
COPY . /code
# Wait for the db to startup(via dockerize), then
# Build and run steve, requires a db to be available on port 3306
CMD dockerize -wait tcp://mariadb:3306 -timeout 60s && \
./mvnw clean package -Pdocker,mariadb -Djdk.tls.client.protocols="TLSv1,TLSv1.1,TLSv1.2" && \
java -XX:MaxRAMPercentage=85 -jar target/steve.war