-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f8235d
commit 1acae3c
Showing
2 changed files
with
17 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
FROM ubuntu:22.04 | ||
# update package manager and install prerequisites | ||
COPY scripts/install_dependencies.sh /home/cc/scripts/install_dependencies.sh | ||
RUN /home/cc/scripts/install_dependencies.sh | ||
COPY src /home/cc/src | ||
COPY lib /home/cc/lib | ||
COPY web /home/cc/web | ||
COPY osmbin /home/cc/osmbin | ||
COPY *.sh /home/cc/ | ||
COPY scripts/build.sh /home/cc/scripts/build.sh | ||
COPY scripts/install_dependencies.sh /home/carma-cloud/scripts/install_dependencies.sh | ||
RUN /home/carma-cloud/scripts/install_dependencies.sh | ||
COPY src /home/carma-cloud/src | ||
COPY lib /home/carma-cloud/lib | ||
COPY web /home/carma-cloud/web | ||
COPY osmbin /home/carma-cloud/osmbin | ||
COPY *.sh /home/carma-cloud/ | ||
COPY scripts/build.sh /home/carma-cloud/scripts/build.sh | ||
|
||
# download carma-cloud source | ||
RUN /home/cc/scripts/build.sh | ||
RUN /home/carma-cloud/scripts/build.sh | ||
ENTRYPOINT [ "/opt/tomcat/bin/catalina.sh", "run" ] | ||
|
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