We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d61ae5f commit b292de7Copy full SHA for b292de7
docker/Dockerfile
@@ -1,6 +1,6 @@
1
-FROM ubuntu:18.04
+FROM alpine:3
2
3
-RUN apt update
4
-RUN apt install -y gcc-8 cmake
5
-RUN apt install -y vim git
6
-RUN apt install -y g++-8
+RUN apk update
+RUN apk add make cmake>=3.11 g++>=9
+RUN apk add vim git
+RUN apk add clang
docker/build-container.bat
@@ -1 +1 @@
-docker build --tag cpp11training %~dp0
+docker build --tag cpp11training %~dp0
docker/build-container.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+
+docker build --tag cpp11training $(cd $(dirname $0); pwd)
0 commit comments