mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-22 15:49:34 -05:00
12 lines
182 B
Docker
12 lines
182 B
Docker
|
|
FROM debian:9.13-slim
|
||
|
|
|
||
|
|
RUN groupadd -r testgroup && useradd -r testuser -G testgroup
|
||
|
|
|
||
|
|
|
||
|
|
COPY --chown=testuser:testgroup . /testroot
|
||
|
|
|
||
|
|
USER testuser
|
||
|
|
|
||
|
|
WORKDIR /testroot
|
||
|
|
RUN cat testfile
|