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