Deleting old dockerfiles. History exists in git

This commit is contained in:
mmcwilliams 2021-10-17 00:36:15 -04:00
parent 379704e791
commit 2c725f1801
2 changed files with 0 additions and 39 deletions

View File

@ -1,34 +0,0 @@
FROM frolvlad/alpine-gxx
RUN apk update
RUN apk add --update \
bash \
git \
coreutils \
build-base \
boost-dev \
zlib-dev \
libpng-dev \
jpeg-dev \
tiff-dev \
openexr-dev \
sdl-dev \
autoconf \
automake \
make
RUN pwd
WORKDIR /usr/src/
RUN cd /usr/src/ && git clone https://github.com/emscripten-core/emsdk.git emsdk
ENV POVRAY_VERSION=3.7-stable
RUN cd /usr/src/ && git clone --depth 1 --branch $POVRAY_VERSION https://github.com/POV-Ray/povray povray
RUN cd /usr/src/emsdk && ./emsdk install latest
RUN cd /usr/src/emsdk && ./emsdk activate latest
RUN cd /usr/src/emsdk && source ./emsdk_env.sh

View File

@ -1,5 +0,0 @@
FROM emscripten/emsdk:2.0.26
RUN DEBIAN_FRONTEND=noninteractive apt update
RUN DEBIAN_FRONTEND=noninteractive apt install -y bash libz-dev libpng-dev libjpeg-dev libtiff-dev libopenexr-dev autoconf automake make libboost-all-dev