File: Dockerfile

package info (click to toggle)
charliecloud 0.43-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 3,084 kB
  • sloc: python: 6,021; sh: 4,284; ansic: 3,863; makefile: 598
file content (11 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
# ch-test-scope: standard
# ch-test-builder-include: ch-image
FROM alpine:3.17
RUN apk add gcc musl-dev strace
RSYNC / /
RUN gcc -std=c11 -Wall -Werror -fmax-errors=1 -o mknods mknods.c
RUN strace ./mknods
RUN ls -lh /_*
RUN test $(ls /_* | wc -l) == 2
RUN test -p /_mknod_fifo
RUN test -p /_mknodat_fifo