Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Formation Kubernetes
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ViaRézo
Kubernetes
Formation Kubernetes
Commits
16b55a8a
Commit
16b55a8a
authored
3 years ago
by
Florentin Labelle
Browse files
Options
Downloads
Patches
Plain Diff
First contribution
parent
b2a4b55e
No related branches found
No related tags found
No related merge requests found
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitmodules
+6
-0
6 additions, 0 deletions
.gitmodules
README.md
+706
-58
706 additions, 58 deletions
README.md
back
+1
-0
1 addition, 0 deletions
back
front
+1
-0
1 addition, 0 deletions
front
solutions/dockerfiles/Dockerfile.front
+15
-0
15 additions, 0 deletions
solutions/dockerfiles/Dockerfile.front
with
729 additions
and
58 deletions
.gitmodules
0 → 100644
+
6
−
0
View file @
16b55a8a
[submodule "front"]
path = front
url = git@gitlab.viarezo.fr:viarezo/vroum/vroum-front
[submodule "back"]
path = back
url = git@gitlab.viarezo.fr:viarezo/vroum/vroum-back
This diff is collapsed.
Click to expand it.
README.md
+
706
−
58
View file @
16b55a8a
This diff is collapsed.
Click to expand it.
back
@
d5c39ec0
Subproject commit d5c39ec0552de2ce825c5f19e6ea18958f295dd1
This diff is collapsed.
Click to expand it.
front
@
46415341
Subproject commit 4641534153a3ecab06de6e26cbb7ef261afa3c0d
This diff is collapsed.
Click to expand it.
solutions/dockerfiles/Dockerfile.front
0 → 100644
+
15
−
0
View file @
16b55a8a
FROM node:16
WORKDIR /front/
COPY package.json package-lock.json /front/
RUN npm install
COPY src/ /front/src/
COPY public/ /front/public/
COPY .env /front/
RUN npm run build
FROM nginx
COPY --from=0 /front/build/ /usr/share/nginx/html/
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