Skip to content

Instantly share code, notes, and snippets.

@terrafied
Created May 17, 2022 16:23
Show Gist options
  • Save terrafied/513746e92a94479272ea7cd96a8c1ba0 to your computer and use it in GitHub Desktop.
Save terrafied/513746e92a94479272ea7cd96a8c1ba0 to your computer and use it in GitHub Desktop.
Base image definition for sbg-webapp container
# syntax=docker/dockerfile:1
FROM ubuntu:xenial
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get -y upgrade
RUN apt-get install -y cmake python3 python2.7 make gcc g++ git curl vim
RUN curl -fsSL https://deb.nodesource.com/setup_14.x | bash -
RUN apt-get install -y nodejs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment