Skip to content

Commit

Permalink
dockerfile: certs
Browse files Browse the repository at this point in the history
  • Loading branch information
drfho committed Jan 22, 2024
1 parent 62c4afe commit 0e5f7f8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
FROM ubuntu:16.04
RUN apt-get update

RUN apt-get install -y ca-certificates
# COPY zerts-pem/* /usr/local/share/ca-certificates/
RUN update-ca-certificates

EXPOSE 8080
EXPOSE 5678

Expand Down Expand Up @@ -51,7 +55,7 @@ ENV VIRTUAL_ENV=/home/zope/venv
RUN virtualenv --python=python2 $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
WORKDIR /home/zope/venv
RUN pip install -r https://zopefoundation.github.io/Zope/releases/2.13.29/requirements.txt
RUN pip install --trusted-host zopefoundation.github.io -r https://zopefoundation.github.io/Zope/releases/2.13.29/requirements.txt
RUN pip install --no-deps -e git+https://github.com/zms-publishing/ZMS4.git#egg=ZMS
# RUN ./pip install Products.CMFCore==2.3.0
RUN pip install Pillow==6.2.2
Expand Down

0 comments on commit 0e5f7f8

Please sign in to comment.