Skip to content

Commit

Permalink
basic 16.0 Odoo builder image
Browse files Browse the repository at this point in the history
  • Loading branch information
rvalyi committed Aug 14, 2023
1 parent 7c1b889 commit 5945fc7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
18 changes: 18 additions & 0 deletions 16.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
FROM python:3.10.12-alpine3.18

RUN apk fix && \
apk --no-cache --update add git git-lfs gpg less openssh patch bash && \
git lfs install

# we cannot use a more recent version for now
# see https://github.com/yaml/pyyaml/issues/724
# note that we install ak and git-aggregator to be able to do ak-build
# later in a builder image based on this image and ensure odoo/src
# is converged to the proper revision with the proper merges
RUN pip install PyYaml==5.3.1
RUN pip install git+https://github.com/akretion/ak

COPY repos.yml /root/.config/git-autoshare/repos.yml
RUN pip install git-autoshare git-aggregator
COPY bin/* /usr/local/bin/
RUN /usr/local/bin/git clone https://github.com/odoo/odoo.git -b 16.0 --bare
8 changes: 8 additions & 0 deletions 16.0/repos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
github.com:
"*":
orgs:
- odoo
- OCA
- acsone
- akretion
- camptocamp

0 comments on commit 5945fc7

Please sign in to comment.