Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
frontend-vue-2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Service Desk
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
Bioinformatics
frontend-vue-2
Merge requests
!1
Resolve "Move frontend to separate project"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Move frontend to separate project"
1-move-frontend-to-separate-project
into
main
Overview
1
Commits
11
Pipelines
8
Changes
116
Merged
xkoloma1
requested to merge
1-move-frontend-to-separate-project
into
main
1 year ago
Overview
1
Commits
11
Pipelines
8
Changes
1
Expand
Closes
#1 (closed)
0
0
Merge request reports
Viewing commit
0359f8e2
Prev
Next
Show latest version
1 file
+
2
−
1
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
0359f8e2
change to node14
· 0359f8e2
xpetrov4
authored
1 year ago
Dockerfile
+
2
−
1
Options
FROM
node:8.17.0-alpine
as
build-stage
# Build stage
FROM
node:14
as
build-stage
WORKDIR
/app
COPY
package*.json ./
RUN
npm ci