Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
Software Heritage virtual environment packaging manifests
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
Container Registry
Model registry
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
Platform
Infrastructure
Software Heritage virtual environment packaging manifests
Merge requests
!17
Add software-stories app
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add software-stories app
software-stories
into
master
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Guillaume Samson
requested to merge
software-stories
into
master
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
Related to
sysadm-environment#4805 (closed)
/cc
@teams/sysadmin
0
0
Merge request reports
Compare
master
version 1
e8d7f62a
2 years ago
master (base)
and
latest version
latest version
687e2c50
1 commit,
2 years ago
version 1
e8d7f62a
1 commit,
2 years ago
2 files
+
36
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
apps/software-stories/Dockerfile
0 → 100644
+
22
−
0
Options
FROM
node:19-bullseye
RUN
apt-get
-y
update
&&
\
apt-get
-y
upgrade
&&
\
npm
install
-g
serve
&&
\
mkdir
-p
/opt/swh/swh-stories
&&
\
chown
-R
node:node /opt/swh
USER
node
ENV
NODE_OPTIONS=--openssl-legacy-provider
WORKDIR
/opt/swh/swh-stories
COPY
--chown=node:node entrypoint.sh /opt/swh
RUN
chmod
u+x /opt/swh/entrypoint.sh
&&
\
git clone https://github.com/ScienceStories/swh-stories.git /opt/swh/swh-stories
&&
\
git checkout 04168585b48edb77b3410cfe0e5e06af545bb18c
&&
\
rm
package-lock.json
&&
\
npm
install
--no-audit
&&
\
npm run build
ENTRYPOINT
"/opt/swh/entrypoint.sh"
Loading