mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-15 19:28:00 +01:00
19 lines
298 B
Docker
19 lines
298 B
Docker
# syntax=docker/dockerfile:1.3
|
|
|
|
FROM docker.io/library/centos:7
|
|
|
|
RUN yum install -y epel-release && yum install -y make python36 && yum clean all
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY asciinema/ asciinema/
|
|
COPY tests/ tests/
|
|
|
|
ENV LANG="en_US.utf8"
|
|
|
|
USER nobody
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|
|
|
|
# vim:ft=dockerfile
|