commit 52d0a621ff70a0f77a1f4c8a36cd01fe0884672e Author: shockrah Date: Sun Aug 2 19:16:30 2020 -0700 initial setup diff --git a/Freechat/Dockerfile b/Freechat/Dockerfile new file mode 100644 index 0000000..b742fa0 --- /dev/null +++ b/Freechat/Dockerfile @@ -0,0 +1,14 @@ +FROM docker pull debian:sid-slim as sid +MAINTAINER Alejandro Santillana alejandros714@protonmail.com + +# Pre-reqs for sql and building later on +RUN apt-get update && apt-get install -y curl libmysqlclient-dev build-essential + +# Installing Nightly version of Rust as mysql_async requires it +RUN +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | \ + sh -s -- -y --default-toolchain nightly-2020-01-24 + +ENV PATH="/root/.cargo/bin:${PATH}" + +RUN cargo install diesel_cli --no-default-features --features mysql diff --git a/osdev/Dockerfile b/osdev/Dockerfile new file mode 100644 index 0000000..2dcc358 --- /dev/null +++ b/osdev/Dockerfile @@ -0,0 +1,7 @@ +FROM debian:10 +MAINTAINER Alejandro Santillana alejandros714@protonmail.com + +RUN apt-get update +RUN apt-get upgrade -y +RUn apt-get install nasm build-essential gcc make binutils genisoimage -y +RUN apt-get upgrade -y diff --git a/readme b/readme new file mode 100644 index 0000000..e8c52bb --- /dev/null +++ b/readme @@ -0,0 +1,9 @@ +Shockrah's Dockerfiles +---------------------- + +This repository serves as a collection of Dockerfiles which I use for various +projects that I either maintain or have worked on in this past. + +All relate to _my_ projects and are not reflective of other peoples works. + +Email: alejandros714@protonmail.com