Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ESSIF-Lab
eSSIF-Lab framework
Commits
a3f822a4
Commit
a3f822a4
authored
Oct 01, 2020
by
Athanasios Katsadas
🔎
Browse files
Speed up docker-compose term development
parent
620bcdfe
Pipeline
#15088
passed with stage
in 2 minutes and 12 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Dockerfile.dev
0 → 100644
View file @
a3f822a4
FROM node:lts
RUN mkdir /app
WORKDIR /app
RUN yarn global add serve
COPY package.json yarn.lock ./
RUN yarn --pure-lockfile
COPY . ./
EXPOSE 5000
CMD yarn parse && yarn glossary && yarn build && cd build && serve
docker-compose.yml
View file @
a3f822a4
...
...
@@ -4,7 +4,7 @@ services:
container_name
:
essif-lab-terminology
build
:
context
:
.
dockerfile
:
Dockerfile
dockerfile
:
Dockerfile
.dev
image
:
essif-lab-terminology:latest
ports
:
-
"
5000:5000"
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment