Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OGSTools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
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
ogs
OpenGeoSys Tools
OGSTools
Merge requests
!150
[ci] Use updated feflow 8.1 from
!140
.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[ci] Use updated feflow 8.1 from
!140
.
bilke/ogstools:feflow-81-container
into
main
Overview
2
Commits
5
Pipelines
14
Changes
5
Merged
Lars Bilke
requested to merge
bilke/ogstools:feflow-81-container
into
main
11 months ago
Overview
2
Commits
5
Pipelines
14
Changes
5
Expand
Related
#53 (closed)
,
!150 (merged)
,
https://github.com/red5alex/ifm_contrib/pull/13
.
Edited
10 months ago
by
Lars Bilke
0
0
Merge request reports
Compare
main
version 13
7b006642
10 months ago
version 12
8d79fe8d
10 months ago
version 11
6980b9d4
10 months ago
version 10
812e6073
10 months ago
version 9
844eee3b
10 months ago
version 8
77adbc11
10 months ago
version 7
1fa07136
10 months ago
version 6
73e03785
10 months ago
version 5
21abe57e
10 months ago
version 4
4036f924
11 months ago
version 3
754d0dde
11 months ago
version 2
07db0aa6
11 months ago
version 1
facf032b
11 months ago
main (base)
and
latest version
latest version
7885a2b3
5 commits,
10 months ago
version 13
7b006642
6 commits,
10 months ago
version 12
8d79fe8d
7 commits,
10 months ago
version 11
6980b9d4
6 commits,
10 months ago
version 10
812e6073
5 commits,
10 months ago
version 9
844eee3b
5 commits,
10 months ago
version 8
77adbc11
5 commits,
10 months ago
version 7
1fa07136
4 commits,
10 months ago
version 6
73e03785
4 commits,
10 months ago
version 5
21abe57e
3 commits,
10 months ago
version 4
4036f924
3 commits,
11 months ago
version 3
754d0dde
2 commits,
11 months ago
version 2
07db0aa6
2 commits,
11 months ago
version 1
facf032b
1 commit,
11 months ago
5 files
+
17
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
.devcontainer/Dockerfile
+
7
−
2
Options
@@ -5,8 +5,13 @@ ENV \
# Adapt when changing base image:
DIST_DIR=ub2204x64
RUN
apt-get update
\
&&
apt-get
install
-yq
--no-install-recommends
gpg curl ca-certificates
\
&&
curl
-fsSL
https://download.feflow.com/download/FEFLOW/linux/dhi-feflow-key.asc | gpg
--dearmor
|
sudo tee
/usr/share/keyrings/feflow.gpg
>
/dev/null
\
&&
apt-get
install
-yq
--no-install-recommends
gpg curl ca-certificates
# Error: The following packages have unmet dependencies:
# feflow-console81 : Depends: aspnetcore-runtime-6.0 but it is not installable
# Add dot net repos for debian 12 (bookworm base image)
RUN
curl
-fsSL
https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb
-o
packages-microsoft-prod.deb
\
&&
dpkg
-i
packages-microsoft-prod.deb
&&
rm
packages-microsoft-prod.deb
RUN
curl
-fsSL
https://download.feflow.com/download/FEFLOW/linux/dhi-feflow-key.asc | gpg
--dearmor
|
sudo tee
/usr/share/keyrings/feflow.gpg
>
/dev/null
\
&&
echo
"deb [arch=amd64 signed-by=/usr/share/keyrings/feflow.gpg] https://download.feflow.com/download/FEFLOW/linux/apt-repo/
$DIST_DIR
stable main"
|
sudo tee
/etc/apt/sources.list.d/feflow.stable.list
\
&&
apt-get update
\
&&
apt list |
grep
feflow
\
Loading