Skip to content

Commit

Permalink
fix(eggs): temporary fix for custom eggs
Browse files Browse the repository at this point in the history
DEVOPS-137
  • Loading branch information
remdub committed Jul 9, 2024
1 parent 8aa6b7c commit aff9c9e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
zlib1g-dev \
&& pip3 install --no-cache-dir pip==$PIP setuptools==$SETUPTOOLS zc.buildout==$ZC_BUILDOUT py-spy

WORKDIR /plone
# TEMPORARY fix
RUN mkdir -p /plone/eggs && \
wget -O- https://eggs.imio.be/cp38/plone.patternslib-1.2.0.2.tar.gz | tar zxv -C /plone/eggs && \
wget -O- https://eggs.imio.be/cp38/plone.formwidget.geolocation-2.2.2.1.tar.gz | tar zxv -C /plone/eggs

WORKDIR /plone
RUN chown imio:imio -R /plone && mkdir /data && chown imio:imio -R /data

# COPY --chown=imio eggs /plone/eggs/
Expand Down
2 changes: 0 additions & 2 deletions sources.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ library.policy = git ${remotes:imio}/library.policy.git pushurl=${remotes:imio_p
library.theme = git ${remotes:imio}/library.theme.git pushurl=${remotes:imio_push}/library.theme.git
library.core = git ${remotes:imio}/library.core.git pushurl=${remotes:imio_push}/library.core.git
pat-leaflet = git ${remotes:imio}/pat-leaflet.git pushurl=${remotes:imio_push}/pat-leaflet.git
plone.patternslib = git ${remotes:imio}/plone.patternslib.git pushurl=${remotes:imio_push}/plone.patternslib.git

collective.behavior.banner = git ${remotes:collective}/collective.behavior.banner.git pushurl=${remotes:collective_push}/collective.behavior.banner.git
collective.z3cform.select2 = git ${remotes:collective}/collective.z3cform.select2.git pushurl=${remotes:collective_push}/collective.z3cform.select2.git
Expand All @@ -26,6 +25,5 @@ collective.upgrade = git ${remotes:collective}/collective.upgrade.git pushurl=${

plone.app.contenttypes = git ${remotes:plone}/plone.app.contenttypes.git pushurl=${remotes:plone_push}/plone.app.contenttypes.git
plone.outputfilters = git ${remotes:plone}/plone.outputfilters.git pushurl=${remotes:plone_push}/plone.outputfilters.git
plone.formwidget.geolocation = git ${remotes:collective}/plone.formwidget.geolocation.git pushurl=${remotes:collective_push}/plone.formwidget.geolocation.git
collective.geo.faceted = git ${remotes:collective}/collective.geo.faceted.git pushurl=${remotes:collective_push}/collective.geo.faceted.git
collective.faceted.map = git ${remotes:affinitic}/collective.faceted.map.git pushurl=${remotes:affinitic_push}/affinitic/collective.faceted.map.git

0 comments on commit aff9c9e

Please sign in to comment.