-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Konstantin Shestakov <[email protected]>
- Loading branch information
Konstantin Shestakov
and
Konstantin Shestakov
authored
Jul 1, 2020
1 parent
51f296c
commit 2e0b183
Showing
2 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
FROM bitnami/minideb:buster | ||
MAINTAINER Konstantin Shestakov <[email protected]> | ||
|
||
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 | ||
|
||
RUN useradd -M -d /sandbox sandbox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM stepik/epicbox-base:buster | ||
MAINTAINER Konstantin Shestakov <[email protected]> | ||
|
||
ENV VERSION 2.14-1 | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends nasm=${VERSION} binutils \ | ||
&& rm -rf /var/lib/apt/lists/* |