Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
masonstrap
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
5
Issues
5
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SRCT
masonstrap
Commits
0f68ec31
Verified
Commit
0f68ec31
authored
Aug 13, 2017
by
David Haynes
🙆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DOCKER
parent
701ca782
Pipeline
#1497
passed with stage
in 33 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
1 deletion
+20
-1
Dockerfile
Dockerfile
+8
-0
docker-compose.yml
docker-compose.yml
+10
-0
package.json
package.json
+2
-1
No files found.
Dockerfile
0 → 100644
View file @
0f68ec31
FROM
node:latest
WORKDIR
/usr/masonstrap
COPY
yarn.lock .
COPY
package.json .
RUN
yarn
COPY
. .
docker-compose.yml
0 → 100644
View file @
0f68ec31
version
:
'
2'
services
:
web
:
build
:
.
command
:
npm run dev
volumes
:
-
.:/usr/masonstrap/
-
/usr/masonstrap/node_modules
ports
:
-
"
8000:8000"
package.json
View file @
0f68ec31
...
...
@@ -30,6 +30,7 @@
"build-masonstrap"
:
"npm-run-all copy-js copy-fonts sass-lint sass-compile sass-prefix sass-minify"
,
"sass-watch"
:
"onchange './masonstrap/*.scss' -- npm run build-masonstrap"
,
"http"
:
"http-server -p 8000"
,
"start"
:
"npm-run-all copy-js copy-fonts sass-watch"
"start"
:
"npm-run-all copy-js copy-fonts sass-watch"
,
"dev"
:
"npm-run-all --parallel start http"
}
}
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