mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-15 19:28:00 +01:00
20 lines
335 B
Docker
20 lines
335 B
Docker
# syntax=docker/dockerfile:1.3
|
|
|
|
FROM docker.io/library/alpine:3.15
|
|
|
|
# https://github.com/actions/runner/issues/241
|
|
RUN apk --no-cache add bash ca-certificates make python3 util-linux
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY asciinema/ asciinema/
|
|
COPY tests/ tests/
|
|
|
|
ENV LANG="en_US.utf8"
|
|
|
|
USER nobody
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|
|
|
|
# vim:ft=dockerfile
|