Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
Frontend V2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Contributor 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
GraphPolaris
Frontend V2
Commits
f869db2a
Commit
f869db2a
authored
3 years ago
by
thijsheijden
Browse files
Options
Downloads
Patches
Plain Diff
Added Dockerfile
parent
24ba9a17
No related branches found
Branches containing commit
Tags
v1.70.1
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+13
-0
13 additions, 0 deletions
Dockerfile
with
13 additions
and
0 deletions
Dockerfile
0 → 100644
+
13
−
0
View file @
f869db2a
# Prepare nginx
FROM
nginx:1.19-alpine
WORKDIR
/app
# ! This copy source needs to be changed to reflect the actual app name
COPY
./dist/apps/frontend /usr/share/nginx/html
RUN
rm
/etc/nginx/conf.d/default.conf
COPY
nginx/nginx.conf /etc/nginx/conf.d
# Fire up nginx
EXPOSE
80
CMD
["nginx", "-g", "daemon off;"]
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