Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
zesje
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
zesje
zesje
Commits
16d7feb3
Commit
16d7feb3
authored
5 years ago
by
Hugo Kerstens
Browse files
Options
Downloads
Patches
Plain Diff
Create Dockerfile based on conda
parent
77a999ba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!152
Run Redis from Conda and add environment.yml
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+14
-13
14 additions, 13 deletions
Dockerfile
with
14 additions
and
13 deletions
Dockerfile
+
14
−
13
View file @
16d7feb3
FROM
archlinux/base
## Install packages and clear the cache after installation. Yarn is fixed at 1.6.0 untill 1.8.0 is released due to a critical bug.
RUN
pacman
-Sy
--noconfirm
nodejs python-pip git libdmtx libsm libxrender libxext gcc libmagick6 imagemagick ghostscript
;
\
pacman
-U
--noconfirm
https://archive.archlinux.org/packages/y/yarn/yarn-1.6.0-1-any.pkg.tar.xz
WORKDIR
~
ADD
requirements*.txt ./
#ADD package.json .
RUN
pip
install
--no-cache-dir
-r
requirements.txt
-r
requirements-dev.txt
;
#RUN yarn install; \
# yarn cache clean; \
# rm package.json
FROM
continuumio/miniconda3
RUN
apt-get update
-y
&&
apt-get
install
-y
libdmtx0a
WORKDIR
/app
ADD
environment.yml /app/environment.yml
RUN
conda
env
create
# From https://medium.com/@chadlagore/conda-environments-with-docker-82cdc9d25754
RUN
echo
"source activate
$(
head
-1
/app/environment.yml |
cut
-d
' '
-f2
)
"
>
~/.bashrc
ENV
PATH /opt/conda/envs/$(head -1 /app/environment.yml | cut -d' ' -f2)/bin:$PATH
RUN
rm
-rf
/app/environment.yml
CMD
bash
\ No newline at end of file
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