mirror of
https://github.com/tailscale/tailscale.git
synced 2025-02-27 18:57:35 +00:00
9 lines
222 B
Docker
9 lines
222 B
Docker
ARG BASE
|
|
FROM ${BASE}
|
|
|
|
RUN groupadd -g 10000 groupone
|
|
RUN groupadd -g 10001 grouptwo
|
|
RUN useradd -g 10000 -G 10001 -u 10002 -m testuser
|
|
COPY . .
|
|
RUN TAILSCALED_PATH=`pwd`tailscaled ./tailssh.test -test.run TestIntegration
|