summaryrefslogtreecommitdiffstats
path: root/tests/distros/Dockerfile.centos
blob: bc4fd7e4985ab9ec8f45c085d4a03d4a1c679709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# 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