Files
sc3dev/Containerfile.alpine
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

19 lines
414 B
Docker

FROM docker.io/library/alpine:3.18
LABEL maintainer="K. Isom <kyle@imap.cc>"
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 apk add --update-cache bash
# setup shimmering-clarity development
# environment
ADD *.sh /usr/local/sc/bin/
RUN container-setup.sh
# clean image
RUN rm -f /var/cache/apk/*
WORKDIR /build