Skip to content
Snippets Groups Projects
Commit 51cebbd8 authored by Joseph Weston's avatar Joseph Weston
Browse files

add extra libraries and runtime dependencies to docker image

parent 19f83876
No related branches found
No related tags found
1 merge request!36Master
......@@ -2,6 +2,14 @@ FROM continuumio/miniconda3
RUN apt-get update -y && apt-get install -y libdmtx0a libmagickwand-dev
RUN apt-get update && \
apt-get install -y \
curl \
poppler-utils build-essential libgl1-mesa-glx \
imagemagick libsm-dev libdmtx-dev libdmtx0a libmagickwand-dev \
&& \
apt-get -y --quiet install git supervisor nginx && \
WORKDIR /app
ADD environment.yml /app/environment.yml
......@@ -13,4 +21,4 @@ ENV PATH /opt/conda/envs/$(head -1 /app/environment.yml | cut -d' ' -f2)/bin:$PA
RUN rm /app/environment.yml
CMD bash
\ No newline at end of file
CMD bash
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment