Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Wang, Vincent H
simplewebapp
Commits
75b3abcd
Commit
75b3abcd
authored
Jan 26, 2021
by
Wang, Vincent H
Browse files
Remove unnecessary files
parent
7308ca2a
Pipeline
#173542
passed with stage
in 0 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
deleted
100644 → 0
View file @
7308ca2a
image
:
maven:latest
stages
:
-
compile
-
test
-
deploy
compile
:
stage
:
compile
script
:
-
mvn compile
test
:
stage
:
test
script
:
-
mvn test
deploy
:
stage
:
deploy
image
:
ruby:latest
script
:
-
gem install dpl
-
dpl --provider=heroku --app=jlp19-simplewebapp --api-key=$Heroku_API_Key
Dockerfile
deleted
100644 → 0
View file @
7308ca2a
FROM
maven:3.6.0-jdk-11-slim
# Install necessary dependencies
RUN
apt-get
-y
update
RUN
apt-get
-y
install
texlive-latex-base texlive-fonts-recommended texlive-latex-extra pandoc
# Copy source files
COPY
src /src
COPY
pom.xml /
# Start application
RUN
mvn package
EXPOSE
8080
CMD
["sh", "target/bin/simplewebapp"]
heroku.yml
deleted
100644 → 0
View file @
7308ca2a
build
:
docker
:
web
:
Dockerfile
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment