Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Public contract registry
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
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TO
Public contract registry
Merge requests
!3
Release
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Release
test
into
master
Overview
0
Commits
17
Pipelines
1
Changes
1
Merged
Release
Alexa Valentová
requested to merge
test
into
master
May 1, 2023
Overview
0
Commits
17
Pipelines
1
Changes
1
0
0
Merge request reports
Viewing commit
6633c2aa
Prev
Next
Show latest version
1 file
+
3
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
6633c2aa
add sync to dockerfile
· 6633c2aa
Tomáš Valenta
authored
May 1, 2023
Dockerfile
+
16
−
2
View file @ 94c34290
Edit in single-file editor
Open in Web IDE
Show full file
FROM
python:3.10
RUN
mkdir
/app
WORKDIR
/app
RUN
curl
-fsSL
https://deb.nodesource.com/setup_19.x | bash -
RUN
apt-get
install
nodejs
&&
rm
-rf
/var/lib/apt/lists/
*
RUN
apt-get
-y
install
autoconf automake libtool pkg-config nodejs git
RUN
rm
-rf
/var/lib/apt/lists/
*
RUN
mkdir
/temp
RUN
mkdir
/temp/libpostal-build
WORKDIR
/temp
RUN
git clone https://github.com/openvenues/libpostal
WORKDIR
/temp/libpostal
RUN
./bootstrap.sh
RUN
./configure
--datadir
=
/temp/libpostal-build
RUN
make
-j4
RUN
make
install
RUN
ldconfig
WORKDIR
/app
COPY
. .
Loading