We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1819bf6 commit 9de5fbeCopy full SHA for 9de5fbe
1 file changed
wizard/Dockerfile
@@ -1,17 +1,9 @@
1
-FROM python:2.7 as builder
2
-RUN apt-get update
3
-
4
-# Is optional, but if you are not going to use this then you will need to install
5
-# 'gnupg' for nodesource so it can setup node install
6
-RUN apt-get install -y build-essential python make gcc g++ curl
7
8
-# The next 2 steps will install node
9
-RUN curl -sL https://deb.nodesource.com/setup_15.x | bash -
10
11
-RUN apt-get install -y nodejs
+FROM node:18-bullseye as builder
+RUN apt-get update && \
+ apt-get install -y build-essential python3 make gcc g++ curl && \
+ rm -rf /var/lib/apt/lists/*
12
13
# The next step is for installing yarn
14
15
RUN npm install -g yarn
16
17
WORKDIR /app
0 commit comments