Skip to content

Commit

Permalink
correct build for losing old distribution; update version for noctua;…
Browse files Browse the repository at this point in the history
… for #11
  • Loading branch information
kltm committed Oct 30, 2024
1 parent a653cc7 commit 2172b1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker-vars.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tag: latest
minerva_tag: v4

# Ubuntu based image
noctua_tag: v4
noctua_tag: v5

#docker_hub_user: "{{ lookup('env', 'USER')|lower }}"
docker_hub_user: geneontology
Expand Down
8 changes: 5 additions & 3 deletions docker/Dockerfile.noctua
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
ARG noctua_base_image=node:8-slim

FROM node:8-slim AS builder
FROM ubuntu:18.04 AS builder

RUN apt-get update \
&& apt-get install -y build-essential python \
&& apt-get install -y curl wget sudo
RUN curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
RUN apt-get install -y build-essential nodejs build-essential python mg \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand All @@ -23,7 +25,7 @@ FROM ubuntu:18.04
RUN apt-get update \
&& apt-get install -y curl wget sudo
RUN curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
RUN apt-get install -y nodejs \
RUN apt-get install -y build-essential nodejs build-essential python mg \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 2172b1a

Please sign in to comment.