Skip to content

Commit

Permalink
Add NASM (#26)
Browse files Browse the repository at this point in the history
Co-authored-by: Konstantin Shestakov <[email protected]>
  • Loading branch information
Konstantin Shestakov and Konstantin Shestakov authored Jul 1, 2020
1 parent 51f296c commit 2e0b183
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
10 changes: 10 additions & 0 deletions epicbox-base/debian/buster/Dockerfile
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
7 changes: 7 additions & 0 deletions epicbox-nasm/Dockerfile
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/*

0 comments on commit 2e0b183

Please sign in to comment.