23 lines
998 B
Docker
23 lines
998 B
Docker
FROM python:3.11.7
|
|
ENV PYTHONUNBUFFERED 1
|
|
|
|
RUN pip install --upgrade pip
|
|
RUN pip install pipenv
|
|
|
|
# install Node according to the newest instructions from https://github.com/nodesource/distributions#debian-and-ubuntu-based-distributions
|
|
# Download and import the Nodesource GPG key
|
|
RUN apt-get update
|
|
RUN apt-get install -y ca-certificates curl gnupg
|
|
RUN mkdir -p /etc/apt/keyrings
|
|
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
|
|
# Create deb repository
|
|
ENV NODE_MAJOR=20
|
|
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
|
|
# Run Update and Install
|
|
RUN apt-get update
|
|
RUN apt-get install nodejs -y
|
|
RUN npm install -g npm@9
|
|
|
|
RUN apt-get install libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libgconf-2-4 libnss3 libxss1 libasound2 libxtst6 xauth xvfb -y
|
|
RUN apt-get install postgresql postgresql-contrib -y
|