Files
sc3dev/Containerfile
Kyle Isom 19fa0c147d Update Containerfiles, start CLI tool.
+ Containerfiles: default to using g++.  Most of the dev machines aren't
  working with clang yet; until this is sorted out, they'll need to use
  g++.
+ Add script to determine if the git-tree is tagged.
+ Add basic CMake skeleton and start CLI tool.
2023-10-18 21:05:56 -07:00

23 lines
584 B
Docker

FROM docker.io/library/ubuntu:jammy
LABEL maintainer="K. Isom <kyle@imap.cc>"
ARG DEBIAN_FRONTEND=noninteractive
ARG AUTOMATED_MODE=yes
ENV TZ=America/Los_Angeles
# prepare build
RUN mkdir -p /usr/local/sc/bin /build
ENV PATH="${PATH}:/usr/local/sc/bin/"
RUN apt-get update && apt-get install -y bash ca-certificates sudo
# setup shimmering-clarity development
# environment
ADD *.sh /usr/local/sc/bin/
RUN container-setup.sh
# clean image
RUN apt-get autoclean && \
apt-get autoremove && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
WORKDIR /build