-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move to docker-prepare for digitalocean
- Loading branch information
Showing
157 changed files
with
2,855 additions
and
2,863 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
# Build and push backend image | ||
./gradlew jib --image=julesjulesandjulian/writeshite-backend:latest | ||
|
||
# Build frontend | ||
(cd src/frontend || exit; | ||
npm install | ||
npm run build) | ||
|
||
# Build and push frontend image | ||
docker build -t julesjulesandjulian/writeshite-frontend:latest . | ||
docker push julesjulesandjulian/writeshite-frontend:latest | ||
|
||
ssh [email protected] | ||
|
||
git clone https://github.com/Jules-Jules-and-Julian-LLC/writeshite.com.git writeshite | ||
cd writeshite/docker || exit | ||
docker-compose pull | ||
docker-compose up -d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
FROM openjdk:8u151-jre-alpine | ||
# We choose this base image because: | ||
# 1. it is the latest Java 8 version on alpine as of March 2018 | ||
# 2. jre-alpine instead of jdk-alpine is much smaller but still enough to | ||
# run most microservice applications on the JVM | ||
# 3. jre-alpine has a smaller security footprint than other official Java docker images | ||
# 4. the explicit version number means the build will be repeatable | ||
# i.e. not dependent on what :latest version may have been pulled from a | ||
# docker registry before. | ||
|
||
RUN adduser -D -s /bin/sh springboot | ||
COPY ./bootrunner.sh /home/springboot/bootrunner.sh | ||
RUN chmod 755 /home/springboot/bootrunner.sh && chown springboot:springboot /home/springboot/bootrunner.sh | ||
WORKDIR /home/springboot | ||
USER springboot | ||
# We add a special springboot user for running our application. | ||
# Java applications do not need to be run as root | ||
|
||
ADD commonServiceDependenciesLayer1 /home/springboot/app/ | ||
# This layer is composed of all transitive dependencies of a | ||
# commonService, e.g in your build.gradle: | ||
# | ||
#dockerprepare { | ||
# commonService = ['org.springframework.boot:spring-boot-starter-web'] | ||
#} | ||
# | ||
# All 30 jar files pulled in from spring-boot-starter-web are added to this layer | ||
|
||
ADD dependenciesLayer2/ /home/springboot/app/ | ||
# This layer contains dependent jar files of the app that aren't a | ||
# commonService. Most of the time, | ||
# having dependencies in this layer will take advantage of the docker build | ||
# cache. This will give you faster build times, faster image | ||
# uploads/downloads and reduced storage requirements. | ||
# This layer is computed automatically from your spring boot application | ||
|
||
ADD classesLayer3/ /home/springboot/app/ | ||
# This layer contains your application classes. It will | ||
# likely change on each docker image build so we expect a docker cache miss. | ||
# This layer is computed automatically from your spring boot application | ||
|
||
VOLUME /tmp | ||
EXPOSE 8080 | ||
ENV JAVA_OPTS="" \ | ||
SPRING_OUTPUT_ANSI_ENABLED=ALWAYS | ||
ENTRYPOINT ["./bootrunner.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/bin/sh | ||
date_echo(){ | ||
datestamp=$(date "+%F %T") | ||
echo "${datestamp} $*" | ||
} | ||
#exec the JVM so that it will get a SIGTERM signal and the app can shutdown gracefully | ||
|
||
if [ -d "${HOME}/app/WEB-INF" ]; then | ||
#execute springboot expanded war, which may have been constructed from several image layers | ||
date_echo "exec java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -cp ${HOME}/app org.springframework.boot.loader.WarLauncher $*" | ||
# shellcheck disable=SC2086 | ||
exec java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -cp "${HOME}/app" org.springframework.boot.loader.WarLauncher "$@" | ||
elif [ -d "${HOME}/app" ]; then | ||
#execute springboot expanded jar, which may have been constructed from several image layers | ||
date_echo "exec java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -cp ${HOME}/app org.springframework.boot.loader.JarLauncher $*" | ||
# shellcheck disable=SC2086 | ||
exec java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -cp "${HOME}/app" org.springframework.boot.loader.JarLauncher "$@" | ||
elif [ -f "${HOME}/app.jar" ]; then | ||
# execute springboot jar | ||
date_echo "exec java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar ${HOME}/app.jar $*" | ||
# shellcheck disable=SC2086 | ||
exec java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar "${HOME}/app.jar" "$@" | ||
else | ||
date_echo "springboot application not found in ${HOME}/app or ${HOME}/app.jar" | ||
exit 1 | ||
fi |
Binary file added
BIN
+58 Bytes
docker-prepare/classesLayer3/BOOT-INF/classes/META-INF/writing.game.kotlin_module
Binary file not shown.
Binary file added
BIN
+573 Bytes
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/Application.class
Binary file not shown.
Binary file added
BIN
+1.04 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/ApplicationKt.class
Binary file not shown.
Binary file added
BIN
+6.17 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/WebSocketConfig.class
Binary file not shown.
Binary file added
BIN
+1.64 KB
...prepare/classesLayer3/BOOT-INF/classes/com/writinggame/controller/GalleryController.class
Binary file not shown.
Binary file added
BIN
+14.9 KB
...r-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/controller/LobbyController.class
Binary file not shown.
Binary file added
BIN
+4 KB
...are/classesLayer3/BOOT-INF/classes/com/writinggame/controller/RequestInputValidator.class
Binary file not shown.
Binary file added
BIN
+1.46 KB
...classesLayer3/BOOT-INF/classes/com/writinggame/controller/WriteShiteErrorController.class
Binary file not shown.
Binary file added
BIN
+1.46 KB
.../classesLayer3/BOOT-INF/classes/com/writinggame/controller/viewModels/ErrorResponse.class
Binary file not shown.
Binary file added
BIN
+1.46 KB
...assesLayer3/BOOT-INF/classes/com/writinggame/controller/viewModels/JoinGameResponse.class
Binary file not shown.
Binary file added
BIN
+4.19 KB
...classesLayer3/BOOT-INF/classes/com/writinggame/controller/viewModels/LobbyViewModel.class
Binary file not shown.
Binary file added
BIN
+2.96 KB
...lassesLayer3/BOOT-INF/classes/com/writinggame/controller/viewModels/ReceivedMessage.class
Binary file not shown.
Binary file added
BIN
+1.42 KB
...epare/classesLayer3/BOOT-INF/classes/com/writinggame/controller/viewModels/Response.class
Binary file not shown.
Binary file added
BIN
+2.6 KB
...ssesLayer3/BOOT-INF/classes/com/writinggame/controller/viewModels/StartGameResponse.class
Binary file not shown.
Binary file added
BIN
+3.53 KB
...esLayer3/BOOT-INF/classes/com/writinggame/controller/viewModels/StoryChangeResponse.class
Binary file not shown.
Binary file added
BIN
+2.18 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/domain/ErrorType.class
Binary file not shown.
Binary file added
BIN
+1.92 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/domain/LobbyStateType.class
Binary file not shown.
Binary file added
BIN
+1.96 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/domain/ResponseType.class
Binary file not shown.
Binary file added
BIN
+1.95 KB
...er-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/domain/StoryPassStyleType.class
Binary file not shown.
Binary file added
BIN
+3.34 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/AwsCredentials.class
Binary file not shown.
Binary file added
BIN
+5.65 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/Gallery.class
Binary file not shown.
Binary file added
BIN
+3.47 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/GalleryEntry.class
Binary file not shown.
Binary file added
BIN
+7.1 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/GalleryManager.class
Binary file not shown.
Binary file added
BIN
+16.5 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/Game.class
Binary file not shown.
Binary file added
BIN
+2.78 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/GameSettings.class
Binary file not shown.
Binary file added
BIN
+12.6 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/Lobby.class
Binary file not shown.
Binary file added
BIN
+6.31 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/LobbyManager.class
Binary file not shown.
Binary file added
BIN
+2.91 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/Message.class
Binary file not shown.
Binary file added
BIN
+4.03 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/Player.class
Binary file not shown.
Binary file added
BIN
+2.32 KB
docker-prepare/classesLayer3/BOOT-INF/classes/com/writinggame/model/Story.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Manifest-Version: 1.0 | ||
Main-Class: org.springframework.boot.loader.launch.JarLauncher | ||
Start-Class: com.writinggame.ApplicationKt | ||
Spring-Boot-Version: 3.3.0 | ||
Spring-Boot-Classes: BOOT-INF/classes/ | ||
Spring-Boot-Lib: BOOT-INF/lib/ | ||
Spring-Boot-Classpath-Index: BOOT-INF/classpath.idx | ||
Spring-Boot-Layers-Index: BOOT-INF/layers.idx | ||
Build-Jdk-Spec: 17 | ||
Implementation-Title: writing.game | ||
Implementation-Version: 1.0-SNAPSHOT | ||
|
1 change: 1 addition & 0 deletions
1
docker-prepare/classesLayer3/META-INF/services/java.nio.file.spi.FileSystemProvider
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
org.springframework.boot.loader.nio.file.NestedFileSystemProvider |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
- "BOOT-INF/lib/aws-java-sdk-s3-1.12.734.jar" | ||
- "BOOT-INF/lib/aws-java-sdk-kms-1.12.734.jar" | ||
- "BOOT-INF/lib/aws-java-sdk-core-1.12.734.jar" | ||
- "BOOT-INF/lib/jmespath-java-1.12.734.jar" | ||
- "BOOT-INF/lib/jackson-dataformat-cbor-2.17.1.jar" | ||
- "BOOT-INF/lib/jackson-datatype-jdk8-2.17.1.jar" | ||
- "BOOT-INF/lib/jackson-datatype-jsr310-2.17.1.jar" | ||
- "BOOT-INF/lib/jackson-module-parameter-names-2.17.1.jar" | ||
- "BOOT-INF/lib/jackson-databind-2.17.1.jar" | ||
- "BOOT-INF/lib/jackson-annotations-2.17.1.jar" | ||
- "BOOT-INF/lib/jackson-core-2.17.1.jar" | ||
- "BOOT-INF/lib/jackson-module-kotlin-2.17.1.jar" | ||
- "BOOT-INF/lib/kotlin-reflect-2.0.0.jar" | ||
- "BOOT-INF/lib/kotlinx-coroutines-core-jvm-1.8.1.jar" | ||
- "BOOT-INF/lib/jaxb-api-2.3.1.jar" | ||
- "BOOT-INF/lib/kotlin-stdlib-2.0.0.jar" | ||
- "BOOT-INF/lib/spring-messaging-6.1.8.jar" | ||
- "BOOT-INF/lib/spring-websocket-6.1.8.jar" | ||
- "BOOT-INF/lib/javax.activation-api-1.2.0.jar" | ||
- "BOOT-INF/lib/annotations-23.0.0.jar" | ||
- "BOOT-INF/lib/spring-webmvc-6.1.8.jar" | ||
- "BOOT-INF/lib/spring-web-6.1.8.jar" | ||
- "BOOT-INF/lib/spring-boot-autoconfigure-3.3.0.jar" | ||
- "BOOT-INF/lib/spring-boot-3.3.0.jar" | ||
- "BOOT-INF/lib/spring-context-6.1.8.jar" | ||
- "BOOT-INF/lib/spring-aop-6.1.8.jar" | ||
- "BOOT-INF/lib/spring-beans-6.1.8.jar" | ||
- "BOOT-INF/lib/spring-expression-6.1.8.jar" | ||
- "BOOT-INF/lib/spring-core-6.1.8.jar" | ||
- "BOOT-INF/lib/httpclient-4.5.13.jar" | ||
- "BOOT-INF/lib/commons-codec-1.16.1.jar" | ||
- "BOOT-INF/lib/joda-time-2.12.7.jar" | ||
- "BOOT-INF/lib/jakarta.annotation-api-2.1.1.jar" | ||
- "BOOT-INF/lib/snakeyaml-2.2.jar" | ||
- "BOOT-INF/lib/tomcat-embed-websocket-10.1.24.jar" | ||
- "BOOT-INF/lib/tomcat-embed-core-10.1.24.jar" | ||
- "BOOT-INF/lib/tomcat-embed-el-10.1.24.jar" | ||
- "BOOT-INF/lib/micrometer-observation-1.13.0.jar" | ||
- "BOOT-INF/lib/spring-jcl-6.1.8.jar" | ||
- "BOOT-INF/lib/httpcore-4.4.16.jar" | ||
- "BOOT-INF/lib/logback-classic-1.5.6.jar" | ||
- "BOOT-INF/lib/log4j-to-slf4j-2.23.1.jar" | ||
- "BOOT-INF/lib/jul-to-slf4j-2.0.13.jar" | ||
- "BOOT-INF/lib/micrometer-commons-1.13.0.jar" | ||
- "BOOT-INF/lib/logback-core-1.5.6.jar" | ||
- "BOOT-INF/lib/slf4j-api-2.0.13.jar" | ||
- "BOOT-INF/lib/log4j-api-2.23.1.jar" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
- "dependencies": | ||
- "BOOT-INF/lib/" | ||
- "spring-boot-loader": | ||
- "org/" | ||
- "snapshot-dependencies": | ||
- "application": | ||
- "BOOT-INF/classes/" | ||
- "BOOT-INF/classpath.idx" | ||
- "BOOT-INF/layers.idx" | ||
- "META-INF/" |
Binary file added
BIN
+28.7 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/annotations-23.0.0.jar
Binary file not shown.
Binary file added
BIN
+1020 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/aws-java-sdk-core-1.12.734.jar
Binary file not shown.
Binary file added
BIN
+729 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/aws-java-sdk-kms-1.12.734.jar
Binary file not shown.
Binary file added
BIN
+1.21 MB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/aws-java-sdk-s3-1.12.734.jar
Binary file not shown.
Binary file added
BIN
+357 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/commons-codec-1.16.1.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+76.7 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jackson-annotations-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+568 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jackson-core-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+1.57 MB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jackson-databind-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+68.7 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jackson-dataformat-cbor-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+35.3 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jackson-datatype-jdk8-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+129 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jackson-datatype-jsr310-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+183 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jackson-module-kotlin-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+10.1 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jackson-module-parameter-names-2.17.1.jar
Binary file not shown.
Binary file added
BIN
+25.5 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jakarta.annotation-api-2.1.1.jar
Binary file not shown.
Binary file added
BIN
+55.3 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/javax.activation-api-1.2.0.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+26.9 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jmespath-java-1.12.734.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.2 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/jul-to-slf4j-2.0.13.jar
Binary file not shown.
Binary file added
BIN
+2.91 MB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/kotlin-reflect-2.0.0.jar
Binary file not shown.
Binary file added
BIN
+1.65 MB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/kotlin-stdlib-2.0.0.jar
Binary file not shown.
Binary file added
BIN
+1.48 MB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/kotlinx-coroutines-core-jvm-1.8.1.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+22.5 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/log4j-to-slf4j-2.23.1.jar
Binary file not shown.
Binary file added
BIN
+287 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/logback-classic-1.5.6.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+46.4 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/micrometer-commons-1.13.0.jar
Binary file not shown.
Binary file added
BIN
+70.1 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/micrometer-observation-1.13.0.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.87 MB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/spring-boot-autoconfigure-3.3.0.jar
Binary file not shown.
Binary file added
BIN
+51.7 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/spring-boot-jarmode-tools-3.3.0.jar
Binary file not shown.
Binary file added
BIN
+1.25 MB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/spring-context-6.1.8.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+296 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/spring-expression-6.1.8.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+601 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/spring-messaging-6.1.8.jar
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1020 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/spring-webmvc-6.1.8.jar
Binary file not shown.
Binary file added
BIN
+433 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/spring-websocket-6.1.8.jar
Binary file not shown.
Binary file added
BIN
+3.65 MB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/tomcat-embed-core-10.1.24.jar
Binary file not shown.
Binary file added
BIN
+255 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/tomcat-embed-el-10.1.24.jar
Binary file not shown.
Binary file added
BIN
+275 KB
docker-prepare/dependenciesLayer2/BOOT-INF/lib/tomcat-embed-websocket-10.1.24.jar
Binary file not shown.
Binary file added
BIN
+1.58 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/jar/ManifestInfo.class
Binary file not shown.
Binary file added
BIN
+5 KB
...-prepare/dependenciesLayer2/org/springframework/boot/loader/jar/MetaInfVersionsInfo.class
Binary file not shown.
Binary file added
BIN
+15.3 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/jar/NestedJarFile.class
Binary file not shown.
Binary file added
BIN
+6.41 KB
...epare/dependenciesLayer2/org/springframework/boot/loader/jar/NestedJarFileResources.class
Binary file not shown.
Binary file added
BIN
+3.71 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/jar/SecurityInfo.class
Binary file not shown.
Binary file added
BIN
+1.62 KB
...epare/dependenciesLayer2/org/springframework/boot/loader/jar/ZipInflaterInputStream.class
Binary file not shown.
Binary file added
BIN
+293 Bytes
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/jarmode/JarMode.class
Binary file not shown.
Binary file added
BIN
+4.45 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/launch/Archive.class
Binary file not shown.
Binary file added
BIN
+4.67 KB
...repare/dependenciesLayer2/org/springframework/boot/loader/launch/ClassPathIndexFile.class
Binary file not shown.
Binary file added
BIN
+5.43 KB
...dependenciesLayer2/org/springframework/boot/loader/launch/ExecutableArchiveLauncher.class
Binary file not shown.
Binary file added
BIN
+5.66 KB
...r-prepare/dependenciesLayer2/org/springframework/boot/loader/launch/ExplodedArchive.class
Binary file not shown.
Binary file added
BIN
+9.81 KB
...er-prepare/dependenciesLayer2/org/springframework/boot/loader/launch/JarFileArchive.class
Binary file not shown.
Binary file added
BIN
+1.73 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/launch/JarLauncher.class
Binary file not shown.
Binary file added
BIN
+2.38 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/launch/JarModeRunner.class
Binary file not shown.
Binary file added
BIN
+8.19 KB
...epare/dependenciesLayer2/org/springframework/boot/loader/launch/LaunchedClassLoader.class
Binary file not shown.
Binary file added
BIN
+3.8 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/launch/Launcher.class
Binary file not shown.
Binary file added
BIN
+21 KB
...repare/dependenciesLayer2/org/springframework/boot/loader/launch/PropertiesLauncher.class
Binary file not shown.
Binary file added
BIN
+5.15 KB
...epare/dependenciesLayer2/org/springframework/boot/loader/launch/SystemPropertyUtils.class
Binary file not shown.
Binary file added
BIN
+1.77 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/launch/WarLauncher.class
Binary file not shown.
Binary file added
BIN
+1.78 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/log/DebugLogger.class
Binary file not shown.
Binary file added
BIN
+1.64 KB
...er-prepare/dependenciesLayer2/org/springframework/boot/loader/net/protocol/Handlers.class
Binary file not shown.
Binary file added
BIN
+2.54 KB
...e/dependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/Canonicalizer.class
Binary file not shown.
Binary file added
BIN
+6.34 KB
...prepare/dependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/Handler.class
Binary file not shown.
Binary file added
BIN
+2.98 KB
...e/dependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/JarFileUrlKey.class
Binary file not shown.
Binary file added
BIN
+2.71 KB
...-prepare/dependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/JarUrl.class
Binary file not shown.
Binary file added
BIN
+8.14 KB
...pendenciesLayer2/org/springframework/boot/loader/net/protocol/jar/JarUrlClassLoader.class
Binary file not shown.
Binary file added
BIN
+12 KB
...ependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/JarUrlConnection.class
Binary file not shown.
Binary file added
BIN
+2.03 KB
...esLayer2/org/springframework/boot/loader/net/protocol/jar/LazyDelegatingInputStream.class
Binary file not shown.
Binary file added
BIN
+1.14 KB
...e/dependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/Optimizations.class
Binary file not shown.
Binary file added
BIN
+1.29 KB
...are/dependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/UrlJarEntry.class
Binary file not shown.
Binary file added
BIN
+3.18 KB
...pare/dependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/UrlJarFile.class
Binary file not shown.
Binary file added
BIN
+5.62 KB
...pendenciesLayer2/org/springframework/boot/loader/net/protocol/jar/UrlJarFileFactory.class
Binary file not shown.
Binary file added
BIN
+3.77 KB
...are/dependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/UrlJarFiles.class
Binary file not shown.
Binary file added
BIN
+3.31 KB
.../dependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/UrlJarManifest.class
Binary file not shown.
Binary file added
BIN
+3.11 KB
...ependenciesLayer2/org/springframework/boot/loader/net/protocol/jar/UrlNestedJarFile.class
Binary file not shown.
Binary file added
BIN
+1.43 KB
...pare/dependenciesLayer2/org/springframework/boot/loader/net/protocol/nested/Handler.class
Binary file not shown.
Binary file added
BIN
+5.64 KB
...pendenciesLayer2/org/springframework/boot/loader/net/protocol/nested/NestedLocation.class
Binary file not shown.
Binary file added
BIN
+7.39 KB
...nciesLayer2/org/springframework/boot/loader/net/protocol/nested/NestedUrlConnection.class
Binary file not shown.
Binary file added
BIN
+3.8 KB
...r2/org/springframework/boot/loader/net/protocol/nested/NestedUrlConnectionResources.class
Binary file not shown.
Binary file added
BIN
+3.42 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/net/util/UrlDecoder.class
Binary file not shown.
Binary file added
BIN
+3.41 KB
...epare/dependenciesLayer2/org/springframework/boot/loader/nio/file/NestedByteChannel.class
Binary file not shown.
Binary file added
BIN
+2.73 KB
...prepare/dependenciesLayer2/org/springframework/boot/loader/nio/file/NestedFileStore.class
Binary file not shown.
Binary file added
BIN
+8.25 KB
...repare/dependenciesLayer2/org/springframework/boot/loader/nio/file/NestedFileSystem.class
Binary file not shown.
Binary file added
BIN
+9.47 KB
...ependenciesLayer2/org/springframework/boot/loader/nio/file/NestedFileSystemProvider.class
Binary file not shown.
Binary file added
BIN
+7.27 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/nio/file/NestedPath.class
Binary file not shown.
Binary file added
BIN
+1.97 KB
...-prepare/dependenciesLayer2/org/springframework/boot/loader/nio/file/UriPathEncoder.class
Binary file not shown.
Binary file added
BIN
+667 Bytes
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/ref/Cleaner.class
Binary file not shown.
Binary file added
BIN
+1.34 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/ref/DefaultCleaner.class
Binary file not shown.
Binary file added
BIN
+1.42 KB
...r-prepare/dependenciesLayer2/org/springframework/boot/loader/zip/ByteArrayDataBlock.class
Binary file not shown.
Binary file added
BIN
+231 Bytes
...r-prepare/dependenciesLayer2/org/springframework/boot/loader/zip/CloseableDataBlock.class
Binary file not shown.
Binary file added
BIN
+1.02 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/zip/DataBlock.class
Binary file not shown.
Binary file added
BIN
+2.39 KB
...prepare/dependenciesLayer2/org/springframework/boot/loader/zip/DataBlockInputStream.class
Binary file not shown.
Binary file added
BIN
+4.29 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/zip/FileDataBlock.class
Binary file not shown.
Binary file added
BIN
+1.64 KB
...er-prepare/dependenciesLayer2/org/springframework/boot/loader/zip/NameOffsetLookups.class
Binary file not shown.
Binary file added
BIN
+3.04 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/zip/VirtualDataBlock.class
Binary file not shown.
Binary file added
BIN
+6.39 KB
...-prepare/dependenciesLayer2/org/springframework/boot/loader/zip/VirtualZipDataBlock.class
Binary file not shown.
Binary file added
BIN
+3.94 KB
...denciesLayer2/org/springframework/boot/loader/zip/Zip64EndOfCentralDirectoryLocator.class
Binary file not shown.
Binary file added
BIN
+5.59 KB
...ndenciesLayer2/org/springframework/boot/loader/zip/Zip64EndOfCentralDirectoryRecord.class
Binary file not shown.
Binary file added
BIN
+9.6 KB
...nciesLayer2/org/springframework/boot/loader/zip/ZipCentralDirectoryFileHeaderRecord.class
Binary file not shown.
Binary file added
BIN
+12.3 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/zip/ZipContent.class
Binary file not shown.
Binary file added
BIN
+4.73 KB
...pare/dependenciesLayer2/org/springframework/boot/loader/zip/ZipDataDescriptorRecord.class
Binary file not shown.
Binary file added
BIN
+6.34 KB
...pendenciesLayer2/org/springframework/boot/loader/zip/ZipEndOfCentralDirectoryRecord.class
Binary file not shown.
Binary file added
BIN
+5.42 KB
...are/dependenciesLayer2/org/springframework/boot/loader/zip/ZipLocalFileHeaderRecord.class
Binary file not shown.
Binary file added
BIN
+7.79 KB
docker-prepare/dependenciesLayer2/org/springframework/boot/loader/zip/ZipString.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM node:18-alpine | ||
WORKDIR /app | ||
COPY build /app/build | ||
RUN npm install -g http-server | ||
CMD ["http-server", "build", "-p", "3000"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.