mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-22 16:13:13 +01:00
8 lines
113 B
Plaintext
8 lines
113 B
Plaintext
|
FROM alpine:3.17
|
||
|
|
||
|
RUN apk add shadow bash
|
||
|
|
||
|
RUN useradd -m docker && echo "docker:docker" | chpasswd
|
||
|
|
||
|
USER docker
|