Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LarvaTagger.jl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Nyx
LarvaTagger.jl
Commits
e9b5b0f8
Commit
e9b5b0f8
authored
10 months ago
by
François LAURENT
Browse files
Options
Downloads
Patches
Plain Diff
feat: temptative Dockerfile for PasteurJanelia backend
parent
509354bd
No related branches found
No related tags found
1 merge request
!22
Set of commits to be tagger v0.19
Pipeline
#136084
passed
10 months ago
Stage: test
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Project.toml
+1
-1
1 addition, 1 deletion
Project.toml
recipes/Dockerfile
+1
-1
1 addition, 1 deletion
recipes/Dockerfile
recipes/Dockerfile.pasteurjanelia
+29
-0
29 additions, 0 deletions
recipes/Dockerfile.pasteurjanelia
with
31 additions
and
2 deletions
Project.toml
+
1
−
1
View file @
e9b5b0f8
name
=
"LarvaTagger"
uuid
=
"8b3b36f1-dfed-446e-8561-ea19fe966a4d"
authors
=
[
"François Laurent"
,
"Institut Pasteur"
]
version
=
"0.18.
4
"
version
=
"0.18.
5
"
[deps]
Colors
=
"5ae59095-9a9b-59fe-a467-6f913c188581"
...
...
This diff is collapsed.
Click to expand it.
recipes/Dockerfile
+
1
−
1
View file @
e9b5b0f8
...
...
@@ -28,7 +28,7 @@ FROM base AS prebuild
ENV
PIP_DISABLE_PIP_VERSION_CHECK=1 \
PIP_NO_CACHE_DIR=1 \
POETRY_VIRTUALENVS_IN_PROJECT=1 \
POETRY_VERSION=1.
2.0
POETRY_VERSION=1.
8.3
RUN
apt-get update
\
&&
apt-get
install
--no-install-recommends
-y
python3-dev python3-pip
\
...
...
This diff is collapsed.
Click to expand it.
recipes/Dockerfile.pasteurjanelia
0 → 100644
+
29
−
0
View file @
e9b5b0f8
ARG BASE=latest
FROM flaur/larvatagger:${BASE} AS prebuild
ENV PIP_DISABLE_PIP_VERSION_CHECK=1 \
PIP_NO_CACHE_DIR=1 \
POETRY_VIRTUALENVS_IN_PROJECT=1 \
POETRY_VERSION=1.8.3
RUN apt-get update \
&& apt-get install --no-install-recommends -y wget \
&& if ! command -v poetry; then \
apt-get install --no-install-recommends -y python3-dev python3-pip \
&& pip install "poetry==$POETRY_VERSION"; \
fi \
&& rm -rf /var/lib/apt/lists/*
FROM prebuild AS backend
ARG PROJECT_DIR=/app
ARG BACKEND_BRANCH=main
RUN cd $PROJECT_DIR \
&& git clone --depth 1 --no-tags --single-branch -b $BACKEND_BRANCH https://gitlab.pasteur.fr/nyx/PasteurJanelia-adapter PasteurJanelia \
&& cd PasteurJanelia \
&& make package \
&& rm -rf .git ~/.cache
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