mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-15 19:28:00 +01:00
23 lines
445 B
Docker
23 lines
445 B
Docker
# syntax=docker/dockerfile:1.3
|
|
|
|
FROM docker.io/library/archlinux:latest
|
|
|
|
RUN pacman-key --init \
|
|
&& pacman --sync --refresh --sysupgrade --noconfirm make python3 \
|
|
&& printf "LANG=en_US.UTF-8\n" > /etc/locale.conf \
|
|
&& locale-gen \
|
|
&& pacman --sync --clean --clean --noconfirm
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY asciinema/ asciinema/
|
|
COPY tests/ tests/
|
|
|
|
ENV LANG="en_US.utf8"
|
|
|
|
USER nobody
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|
|
|
|
# vim:ft=dockerfile
|