Skip to content

Commit

Permalink
Add epicbox-gcc/10 image
Browse files Browse the repository at this point in the history
  • Loading branch information
andrvb committed May 12, 2022
1 parent ed3c857 commit f52e8e4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ Dockerfiles to build images used to automatically grade

Base images with created `sandbox (1000:1000)` user:
* [`stepik/epicbox-base:alpine-3.6`](https://hub.docker.com/r/stepik/epicbox-base/)
* [`stepik/epicbox-base:bullseye`](https://hub.docker.com/r/stepik/epicbox-base/)
* [`stepik/epicbox-base:buster`](https://hub.docker.com/r/stepik/epicbox-base/)
* [`stepik/epicbox-base:stretch`](https://hub.docker.com/r/stepik/epicbox-base/)
* [`stepik/epicbox-base:jessie`](https://hub.docker.com/r/stepik/epicbox-base/)

Images for programming languages:
* ASM32, ASM64, C, C++, C++11: [`stepik/epicbox-gcc:6.3.0`](https://hub.docker.com/r/stepik/epicbox-gcc/)
* C++17, C++20: [`stepik/epicbox-gcc:10.2.1`](https://hub.docker.com/r/stepik/epicbox-gcc/)
* C#: [`stepik/epicbox-mono:5.0.0`](https://hub.docker.com/r/stepik/epicbox-mono/)
* Clojure: [`stepik/epicbox-clojure:1.9.0.397`](https://hub.docker.com/r/stepik/epicbox-clojure/)
* Go: [`stepik/epicbox-go:1.8.1`](https://hub.docker.com/r/stepik/epicbox-go/)
Expand Down
6 changes: 3 additions & 3 deletions epicbox-base/debian/bullseye/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM bitnami/minideb:bullseye
MAINTAINER Stepik Team <[email protected]>

RUN apt-get update && apt-get install -y --no-install-recommends locales && \
rm -r /var/lib/apt/lists /var/cache/apt/archives && \
sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-gen
RUN apt-get update && apt-get install -y --no-install-recommends locales \
&& rm -rf /var/lib/apt/lists/* \
&& sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-gen

ENV LANG en_US.UTF-8

Expand Down
8 changes: 8 additions & 0 deletions epicbox-gcc/10/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM stepik/epicbox-base:bullseye
MAINTAINER Stepik Team <[email protected]>

ENV GCC_VERSION 10.2.1-1

RUN apt-get update && apt-get install -y --no-install-recommends \
gcc=4:${GCC_VERSION} gcc-multilib=4:${GCC_VERSION} g++=4:${GCC_VERSION} \
&& rm -rf /var/lib/apt/lists/*
File renamed without changes.

0 comments on commit f52e8e4

Please sign in to comment.