Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wallet-dapp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
wallet-dapp
Commits
2ae41a5b
Commit
2ae41a5b
authored
5 days ago
by
Bartek Wrona
Browse files
Options
Downloads
Patches
Plain Diff
Added definition of server built using caddy
parent
a386c38f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1
Prepared definition of application docker image
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+35
-0
35 additions, 0 deletions
Dockerfile
with
35 additions
and
0 deletions
Dockerfile
0 → 100644
+
35
−
0
View file @
2ae41a5b
FROM
caddy
AS
app
COPY
./dist/ /usr/share/caddy/
RUN
cat
>
/etc/caddy/Caddyfile
<<
EOF
:8080 {
root * /usr/share/caddy
file_server
try_files {path} /
}
EOF
ARG
BUILD_TIME
ARG
GIT_COMMIT_SHA
ARG
GIT_CURRENT_BRANCH
ARG
GIT_LAST_LOG_MESSAGE
ARG
GIT_LAST_COMMITTER
ARG
GIT_LAST_COMMIT_DATE
LABEL
org.opencontainers.image.created="$BUILD_TIME"
LABEL
org.opencontainers.image.url="https://hive.io/"
LABEL
org.opencontainers.image.documentation="https://gitlab.syncad.com/hive/wallet-dapp"
LABEL
org.opencontainers.image.source="https://gitlab.syncad.com/hive/wallet-dapp"
#LABEL org.opencontainers.image.version="${VERSION}"
LABEL
org.opencontainers.image.revision="$GIT_COMMIT_SHA"
LABEL
org.opencontainers.image.licenses="MIT"
LABEL
org.opencontainers.image.ref.name="Metamask dApp providing a bridge to Hive blockchain"
LABEL
org.opencontainers.image.title="Hive Bridge Application Image"
LABEL
org.opencontainers.image.description="Runs Hive Bridge applicaton)"
LABEL
io.hive.image.branch="$GIT_CURRENT_BRANCH"
LABEL
io.hive.image.commit.log_message="$GIT_LAST_LOG_MESSAGE"
LABEL
io.hive.image.commit.author="$GIT_LAST_COMMITTER"
LABEL
io.hive.image.commit.date="$GIT_LAST_COMMIT_DATE"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment