mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-15 19:28:00 +01:00
34 lines
573 B
Docker
34 lines
573 B
Docker
# syntax=docker/dockerfile:1.3
|
|
|
|
FROM docker.io/library/debian:bullseye
|
|
|
|
ENV DEBIAN_FRONTENT="noninteractive"
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y \
|
|
ca-certificates \
|
|
locales \
|
|
make \
|
|
procps \
|
|
python3 \
|
|
&& localedef \
|
|
-i en_US \
|
|
-c \
|
|
-f UTF-8 \
|
|
-A /usr/share/locale/locale.alias \
|
|
en_US.UTF-8 \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY asciinema/ asciinema/
|
|
COPY tests/ tests/
|
|
|
|
ENV LANG="en_US.utf8"
|
|
|
|
USER nobody
|
|
|
|
ENV SHELL="/bin/bash"
|
|
|
|
# vim:ft=dockerfile
|