Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Odoo scripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Container Registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
XCG
Odoo scripts
Commits
98d44b6a22de
Commit
98d44b6a22de
authored
3 years ago
by
Vincent Hatakeyama
Browse files
Options
Downloads
Patches
Plain Diff
adapt odoo scripts to new base image
parent
ecb4eccf6917
No related branches found
No related tags found
1 merge request
!50
Topic/default/fix not null detect
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
odoo_scripts/docker_build.py
+4
-1
4 additions, 1 deletion
odoo_scripts/docker_build.py
with
4 additions
and
1 deletion
odoo_scripts/docker_build.py
+
4
−
1
View file @
98d44b6a
...
...
@@ -142,7 +142,9 @@
call
([
"
cp
"
,
dockerfile
,
debug_dockerfile
])
with
open
(
debug_dockerfile
,
"
a
"
)
as
myfile
:
myfile
.
write
(
"
\n
# Developer helpers
\n
"
"
RUN apt-get update -qq
\n
"
)
myfile
.
write
(
"
\n
# Developer helpers
\n
USER root
\n
RUN apt-get update -qq
\n
"
)
myfile
.
write
(
"
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y -qq
"
)
...
...
@@ -159,6 +161,7 @@
)
# Install pdb++
myfile
.
write
(
"
RUN python3 -m pip install pdbpp
\n
"
)
myfile
.
write
(
"
USER odoo
\n
"
)
elif
odoo_type
in
(
"
odoo10
"
,):
myfile
.
write
(
"
python-ipdb
\n
"
)
myfile
.
write
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment