Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
docker-spearhead
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
Package 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
Global Dynamic Exposure
server-components
containers
docker-spearhead
Merge requests
!2
Integrated spearhead as core for import logic
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Integrated spearhead as core for import logic
feature/spearhead
into
master
Overview
1
Commits
1
Pipelines
0
Changes
3
Merged
Felix Delattre
requested to merge
feature/spearhead
into
master
4 years ago
Overview
1
Commits
1
Pipelines
0
Changes
3
Expand
\approve
@ds
\fyi
@marius
0
0
Merge request reports
Compare
master
version 2
1e70179a
4 years ago
version 1
7b470834
4 years ago
master (base)
and
latest version
latest version
19aed7e4
1 commit,
4 years ago
version 2
1e70179a
1 commit,
4 years ago
version 1
7b470834
1 commit,
4 years ago
3 files
+
19
−
206
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
Dockerfile
+
12
−
6
Options
# Copyright (
c
) 2021:
# Copyright (
C
) 2021:
# Helmholtz-Zentrum Potsdam Deutsches GeoForschungsZentrum GFZ
#
# This program is free software: you can redistribute it and/or modify it
@@ -19,8 +19,16 @@ FROM debian:bullseye-slim
ENV
DEBIAN_FRONTEND noninteractive
# Install software
RUN
apt-get update
RUN
apt-get
install
--no-install-recommends
-y
osm2pgsql postgresql-client
RUN
apt update
RUN
apt
install
--no-install-recommends
-y
\
ca-certificates
\
git
\
osm2pgsql
\
postgresql-client
# Install spearhead
RUN
cd
/usr/local/lib
&&
git clone
--branch
feature/shell https://git.gfz-potsdam.de/dynamicexposure/openbuildingmap/spearhead.git
RUN
ln
-s
/usr/local/lib/spearhead/spearhead /usr/local/bin/spearhead
# Cleanup
RUN
apt-get autoremove
--yes
$build_dependencies
&&
\
@@ -30,6 +38,4 @@ RUN apt-get autoremove --yes $build_dependencies && \
VOLUME
["/tmp/import"]
# Start script
COPY
./files/start.sh /usr/local/bin
CMD
/usr/local/bin/start.sh
CMD
/usr/local/bin/spearhead
Loading