mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-21 23:29:59 -05:00
* tests: Add file_permission test which is failing for now. * tests: Add whitelist_dockerignore test which is failing for now. * fix: Various issues with docker_registry_image build process.
11 lines
182 B
Docker
11 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
|