2021-10-30 12:55:12 -04:00
|
|
|
# syntax=docker/dockerfile:1.3
|
|
|
|
|
|
2022-02-13 16:07:33 -05:00
|
|
|
# https://medium.com/nttlabs/ubuntu-21-10-and-fedora-35-do-not-work-on-docker-20-10-9-1cd439d9921
|
|
|
|
|
# https://www.mail-archive.com/ubuntu-bugs@lists.ubuntu.com/msg5971024.html
|
|
|
|
|
FROM registry.fedoraproject.org/fedora:34
|
2021-10-30 12:55:12 -04:00
|
|
|
|
2021-10-30 14:09:53 -04:00
|
|
|
RUN dnf install -y make python3 procps && dnf clean all
|
2017-12-02 18:40:09 +01:00
|
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
2021-10-30 12:55:12 -04:00
|
|
|
|
|
|
|
|
COPY asciinema/ asciinema/
|
|
|
|
|
COPY tests/ tests/
|
|
|
|
|
|
|
|
|
|
ENV LANG="en_US.utf8"
|
|
|
|
|
ENV SHELL="/bin/bash"
|
|
|
|
|
|
|
|
|
|
USER nobody
|
|
|
|
|
|
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|
|
|
|
|
# vim:ft=dockerfile
|